[Rd] need help debugging on Windows

2004-10-25 Thread Liaw, Andy
Dear R-devel, Apologies for bothering y'all with this seemingly perennial question. A user reported problem with my most recent version of randomForest (4.4-1), and I was able to reproduce it with his data with R-2.0.0 patched (2004-10-24) on WinXP Pro. The problem is that it crashes R on Window

Re: [Rd] copyright issues when package maintainer changes

2004-10-25 Thread Prof Brian Ripley
On Mon, 25 Oct 2004, Whit Armstrong wrote: > I will be taking over as maintainer of the its package from Giles Heywood. > The code was originally written while he was working at Commerzbank. I have > added the header below to the top of the R source file to indicate the > changes in the copyright

Re: [Rd] pgamma discontinuity (PR#7307)

2004-10-25 Thread maechler
> "Morten" == Morten Welinder <[EMAIL PROTECTED]> > on Mon, 25 Oct 2004 12:04:08 -0400 (EDT) writes: Morten> A little code study, formula study and experimentation reveals that the Morten> situation is mostly fixable: Morten> 1. Get rid of the explicit alpha limit. (A for

[Rd] copyright issues when package maintainer changes

2004-10-25 Thread Whit Armstrong
I will be taking over as maintainer of the its package from Giles Heywood. The code was originally written while he was working at Commerzbank. I have added the header below to the top of the R source file to indicate the changes in the copyrights for the code. The package was originally released

Re: [Rd] pgamma discontinuity (PR#7307)

2004-10-25 Thread Morten Welinder
A little code study, formula study and experimentation reveals that the situation is mostly fixable: 1. Get rid of the explicit alpha limit. (A form of it is implicit in (2) and (3) below.) 2. Use the series formula when (x < alph + 10 && x < 0.99 * (alph + 1000)) This guarantees

Re: [Rd] <<- (PR#7313)

2004-10-25 Thread Thomas Lumley
On Mon, 25 Oct 2004 [EMAIL PROTECTED] wrote: Full_Name: Boris Vaillant Version: 2.0 OS: Win 2000 Submission from: (NULL) (195.227.11.98) ##Maybe I have not fully understood the changements ##in R 2.0. ## Why is it that a <- 1:3 names(a) <- 1:3 # works fine, but b <<- 1:3 names(b) <<- 1:3 ## used to

[Rd] Stimulate others

2004-10-25 Thread gay lane
The exceptional Discovery of Human Phero mones Our perfume has real human sexual attractant in it. Direct from the laboratory to you! After I saw that story on Dateline NBC about your perfume I ordered some and I am "extremely" satisfied. Women are now coming up and talking to ME! I don't even

[Rd] <<- (PR#7313)

2004-10-25 Thread bvaillant
Full_Name: Boris Vaillant Version: 2.0 OS: Win 2000 Submission from: (NULL) (195.227.11.98) ##Maybe I have not fully understood the changements ##in R 2.0. ## Why is it that a <- 1:3 names(a) <- 1:3 # works fine, but b <<- 1:3 names(b) <<- 1:3 ## used to work in R 1.9 ## and gives > Error: Ob

Re: [Rd] Cross compiling in R-2.0.0

2004-10-25 Thread Iago Mosqueira
On Tue, 2004-10-19 at 12:12, Prof Brian Ripley wrote: > More likely you are cross-compiling R to run under Windows. Yes, but only with the intention of using the installation to compile packages for windows. > Who said you should `make R'? That is not in the instructions in > src/gnuwin32/INSTA

Re: [Rd] write.table in R 2.0.0 (PR#7312)

2004-10-25 Thread murdoch
This has nothing to do with write.table. The column names in x are "x" and "x.1". This is documented in the NEWS file: o data.frame(check.names = TRUE) (the default) enforces unique names, as S does. Duncan Murdoch On Mon, 25 Oct 2004 10:36:48 +0200 (CEST), [EMAIL PROTECTED] wro

Re: [Rd] incorrect report (was write.table in R 2.0.0) (PR#7312)

2004-10-25 Thread Prof Brian Ripley
Note this is nothing to do with write.table, as > data.frame(x=c(1,2), x=c(1,2)) x x.1 1 1 1 2 2 2 which write.table faithfully reports. This change *is* in the NEWS file o data.frame(check.names = TRUE) (the default) enforces unique names, as S does. However, there are sev

[Rd] write.table in R 2.0.0 (PR#7312)

2004-10-25 Thread a . buness
Full_Name: Andreas Version: R 2.0.0 OS: Linux Submission from: (NULL) (193.174.58.148) R 2.0.0 > x <- data.frame(x=c(1,2), x=c(1,2)) > write.table(x, col.names=NA, sep="\t") "" "x" "x.1" "1" 1 1 "2" 2 2 R 1.9.1 > write.table(x, col.names=NA, sep="\t") "" "x"