Re: [Rd] typo in `eurodist'

2005-12-07 Thread torsten
ford)? our library doesn't seems to have a copy of `The Cambridge Encyclopaedia', so I can't check either. Google has 74.900 hits for `Gibralta' (more than one would expect for a typo, I think) and 57.700.000 for `Gibraltar'. So maybe both spellings are in use. Best, Torst

Re: [Rd] .Rbuildignore {was: ... upgrading an R (WINDOWS) installation..}

2005-07-06 Thread Torsten Hothorn
r via a switch. I usually have something like .onLoad <- function(lib, pkg) { ... GCtorture <<- TRUE ... return(TRUE) } in packages and simply gctorture(on = GCtorture) in all regression tests which allows me to switch between time consuming tests and ordinary regression tests

Re: [Rd] Buglet in src/appl/splines.c (PR#8030)

2005-07-25 Thread Torsten Hothorn
our mail should be saved in "The Annals of R" ... > the next version of the `fortunes' package will have R> fortune(134) Excellent, Berwin! Specifically the part about why the bug never really triggers wrong behavior. Your mail should be saved in `The Annals of R'

[Rd] R news: Call for Papers

2005-09-12 Thread Torsten Hothorn
eRs. Please send submissions to Uwe Ligges <[EMAIL PROTECTED]>. The deadline for submissions is October, 8th, 2005 Keep the contributions rolling in! The Editorial Board, Doug Bates, Paul Murrell and Torsten Hothorn __ R-devel@r-project.

Re: [Rd] Classification Trees and basic Random Forest pkg using tree structures in C

2005-11-07 Thread Torsten Hothorn
o and ended up representing a (binary) tree as recursive lists which can be manipulated from both the C and R side. The `party' package has the code (and an internal random forest function, however, without R interface yet) and the vignette explains some details. Best, Torsten > Not s

Re: [Rd] mosaicplot() update and clarification

2005-11-08 Thread Torsten Hothorn
ding something, > again, I apologize. `mosaicplot' is a function in package `graphics' (and lists you as the author) and `mosaic' is a function in package `vcd'. There _was_ a function `vcd::mosaicplot' in older versions of the `vcd' package masking `graphics:

[Rd] useR! 2006: submission & registration started!

2005-11-09 Thread Torsten Hothorn
more news. See you in Vienna! Torsten, Achim, David, Bettina, Kurt and Fritz __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

[Rd] typo in `eurodist'

2005-12-07 Thread Torsten Hothorn
R> attributes(eurodist)$Labels[9] [1] "Gibralta" should be `Gibraltar'. Best, Torsten __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

[Rd] useR! 2006 - Submission Deadline 2006-02-28

2006-01-24 Thread Torsten Hothorn
tions of R. A web page offering more information on the `useR!' conference, abstract submission, registration and Vienna is available at http://www.R-project.org/useR-2006/ We will accept submissions until February 28, 2006. Let the contributions roll in! The organizing committee: Tor

Re: [Rd] attributes on symbols

2017-07-07 Thread Torsten Hothorn
Here is a simpler example: ex <- as.name("a") attr(ex, "test") <- 1 quote(a) a attr(,"test") [1] 1 Torsten On Thu, 6 Jul 2017, William Dunlap wrote: The multcomp package has code in multcomp:::expression2coef that attaches the 'coef' attribu

[Rd] model.matrix memory problem (PR#13838)

2009-07-16 Thread Torsten . Hothorn
a = mydf) *** caught segfault *** address 0x18, cause 'memory not mapped' Segmentation fault Best wishes, Torsten --please do not edit the information below-- Version: platform = i686-pc-linux-gnu arch = i686 os = linux-gnu system = i686, linux-gnu status = major = 2 m

Re: [Rd] mboost_1.1-3 blackboost_fit (PR#13972)

2009-09-28 Thread Torsten Hothorn
rty:::ctreedpp(y ~ ., data = dt, weights = NULL) will do the job, however, not very nicely. mboost version 2.0-0 (available from R-forge) can do better. Best wishes, Torsten Best, Uwe Ligges bulls...@mail.ru wrote: Full_Name: Ivan the Terrible Version: 2.9.2 OS: Windows XP SP3 Submission f

[Rd] nlevels() is 0 and not NA

2007-04-24 Thread Torsten Hothorn
> nlevels(c("a", "b")) [1] 0 but the documentation in R 2.5.0 (and earlier) says If the argument is not a 'factor', 'NA' is returned. I hope it isn't too late, I only came across this in a lecture this morning. Best, Torsten

[Rd] [SoC09-Idea] Party On!

2009-02-27 Thread Torsten Hothorn
Hi Manuel, find our SoC proposal below. Best wishes, Torsten & Achim ___ Party On! New Recursive Partytioning Tools. Mentor: Torsten Hothorn & Achim Zeileis Short Description: The aim of the project is the implem

[Rd] S3 generics without NS and cleanEx()

2006-02-15 Thread Torsten Hothorn
z and http://www.imbe.med.uni-erlangen.de/~hothorn/modeltools_0.2-3.tar.gz is required. The example below can be reproduced with both R-2.2.1 and R-2.3.0. Best wishes, Torsten R> invisible(options(echo = TRUE)) R> ### * R> ### R> attach(NULL, name = "CheckExEnv&q

[Rd] conflicting S4 generics

2006-02-15 Thread Torsten Hothorn
(object) [EMAIL PROTECTED], class = structure("MethodDefinition", package = "methods"), target = structure("rvm", .Names = "object", class = structure("signature", package = "methods")), defined = structure("rvm", .Names = "object", class = structure("signature", package = "methods"))) object = "onlearn": structure(function (object) [EMAIL PROTECTED], class = structure("MethodDefinition", package = "methods"), target = structure("onlearn", .Names = "object", class = structure("signature", package = "methods")), defined = structure("onlearn", .Names = "object", class = structure("signature", package = "methods"))) and the `party' is over. Is there anything (except agreeing on a common signature) one can do about it? Best wishes, Torsten __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

Re: [Rd] S3 generics without NS and cleanEx()

2006-02-15 Thread Torsten Hothorn
s strucchange does not have a namespace. > export(sctest.mob) instead of S3method(sctest, mob) fixes the problem. Thanks! Torsten > > On Wed, 15 Feb 2006, Prof Brian Ripley wrote: > >> Torsten, >> >> The error is that .__S3MethodsTable__. ends up in t

Re: [Rd] S3 generics without NS and cleanEx()

2006-02-15 Thread Torsten Hothorn
On Wed, 15 Feb 2006, Prof Brian Ripley wrote: > Torsten, > > The error is that .__S3MethodsTable__. ends up in the global environment. > Are you importing sctest (I can't see it)? I think that's the problem. > yes. But `strucchange' has no namespace and so I

Re: [Rd] profiling C code

2006-02-20 Thread Torsten Hothorn
d very much appreciate pointers as well. > I happily use `oprofile' (web page at http://oprofile.sourceforge.net/) for profiling shared libs. You simply start a daemon, run your R code, and get the results. `opannotate' labels lines in C source files with the corresponding systime, very

Re: [Rd] profiling C code

2006-02-22 Thread Torsten Hothorn
as only a few very privileged users get that here, and I am not going to > open up root access to my private file server. root needs to start the daemon via opcontrol --start-daemon and normal users can dump the output. But I don't know how a normal user would clean up and start new

[Rd] gsub + backslashes

2006-04-24 Thread Torsten Hothorn
regular expression '\' gives an error. Or am I just blind? Best, Torsten R> version _ platform i686-pc-linux-gnu arch i686 os linux-gnu system i686, linux-gnu status Under development (unstable) major 2 minor

Re: [Rd] Package Unit Testing

2006-07-25 Thread Torsten Hothorn
put is there). > But how does one generate such a file? either R CMD BATCH or simply run R CMD check once and copy .Rcheck/tests/*.Rout into /tests/*Rout.save > Additionally, does testing also > test the first "welcome" text - different version of R haave a bit different > &

[Rd] Typo in print.default.Rd

2006-09-05 Thread Torsten Hothorn
line 17 has `intepretation', should read `interpretation' Torsten __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

[Rd] R 2.4.0 @ R-project.org

2007-01-16 Thread Torsten Hothorn
R-project.org' News section still has R version 2.4.0 has been released on 2006-10-03. Best wishes, Torsten __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel