Re: [Rd] PR#8282

2005-11-17 Thread ripley
The attempt made was to reproduce exactly the example you reported (of course). Notice that this is incorrect usage, as you are trying to replace one element by 2. We have since found another example of this, and fixed it, but it is nothing new in 2.2.0. Please try a current version of R (R-

Re: [Rd] R-exts.texi in SVN version 36380

2005-11-17 Thread Prof Brian Ripley
On Fri, 18 Nov 2005, Berwin A Turlach wrote: > G'day all, > > after issuing `svn up' on my machine this morning, I noticed that > `make info' choked on R-exts.texi. Actually 'make' chokes. > Below is a patch that seems to > solve the problem. BTW, while `make info' runs now, I still get the > f

Re: [Rd] Problem with fitdistr for gamma in R 2.2.0

2005-11-17 Thread Gregor Gorjanc
Thanks to both Peters for involvment. I will add argument for method to be used in optim. -- Lep pozdrav / With regards, Gregor Gorjanc -- University of Ljubljana PhD student Biotechnical Faculty Zootechnical Department

[Rd] R-exts.texi in SVN version 36380

2005-11-17 Thread Berwin A Turlach
G'day all, after issuing `svn up' on my machine this morning, I noticed that `make info' choked on R-exts.texi. Below is a patch that seems to solve the problem. BTW, while `make info' runs now, I still get the following warning: /usr/bin/makeinfo --enable-encoding -D UseExternalXrefs -I/opt/s

[Rd] PR#8282

2005-11-17 Thread pdbailey
When an attempt was made to reproduce this on other platforms, how high was the index? For one of my Apples, I need to take it very high, maybe 100? Sorry, I guess I edited that part out. -- zi <- vector() for(i in 1:100) { zi[i] <- c(1,2) } zi[,1] -- ___

Re: [Rd] Matrix (PR#8321)

2005-11-17 Thread P Ehlers
Actually, my guess about PACKAGES was wrong. I just removed Matrix and re-installed Matrix_0.99-2 (Rgui: Packages menu) from CRAN and had no problems. You'll have to be more explicit about "will not load". Peter Cougar Lawrence wrote: > Thanks for the reply. I am using windows. I tried both

Re: [Rd] Matrix (PR#8321)

2005-11-17 Thread Cougar Lawrence
Thanks for the reply. I am using windows. I tried both packages. The directions under Matrix indicate that package 99.2 is current. It is the one that will not load. Respectfully, Frank Lawrence -Original Message- From: P Ehlers [mailto:[EMAIL PROTECTED] Sent: Thursday, November 1

[Rd] problem with \eqn (PR#8322)

2005-11-17 Thread ross
Full_Name: Ross Boylan Version: 2.2.0 OS: Linux Submission from: (NULL) (65.175.48.58) \eqn{{\bf\beta}_j}{b(j)} in my .Rd file produces this error ! Missing $ inserted. $ l.7 \eqn{{\bf\beta}_j}{\bf\beta}_

Re: [Rd] Matrix (PR#8321)

2005-11-17 Thread P Ehlers
Assuming you're on Windows (you didn't say), it looks like the PACKAGES file in /.../contrib/2.2/ has two entries for Matrix. Perhaps that's the problem. Peter [EMAIL PROTECTED] wrote: > It appears to me that the new version of the package Matrix will not load to > R-2.2.0. > > Respectfully, >

Re: [Rd] Problem with fitdistr for gamma in R 2.2.0

2005-11-17 Thread P Ehlers
I think the problem may lie with fitdistr(). Specifically, replacing the code in fitdistr.R (VR_7.2-20) (line 137 to end) with the code in VR_7.2-8 (line 92 to end) seems to handle fitdistr(otm, "gamma") just fine. But I haven't done much testing. Peter Ehlers Peter Dalgaard wrote: > P Ehler

[Rd] Matrix (PR#8321)

2005-11-17 Thread Cougar
It appears to me that the new version of the package Matrix will not load to R-2.2.0. Respectfully, Frank Lawrence __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

Re: [Rd] Scan data from a .txt file

2005-11-17 Thread Duncan Murdoch
On 11/17/2005 10:35 AM, Vasundhara Akkineni wrote: > Hi all, > Am trying to read data from a .txt file in such a way that i can access the > column names too. For example, the data in the table.txt file is as below: > Name Weight Height Gender > Anne 150 65 F > Rob 160 68 M > George 180 65 M > Gre

Re: [Rd] Problem with fitdistr for gamma in R 2.2.0

2005-11-17 Thread Peter Dalgaard
P Ehlers <[EMAIL PROTECTED]> writes: > Gregor, > > fitdistr(otm, "gamma", method="L-BFGS-B") > > works for me (on WinXP). Or you could specify "lower = 0". The really odd thing is that it even works with > fitdistr(otm, "gamma",lower=-Inf) shape rate 1.03081094 0.18924370

[Rd] Scan data from a .txt file

2005-11-17 Thread Vasundhara Akkineni
Hi all, Am trying to read data from a .txt file in such a way that i can access the column names too. For example, the data in the table.txt file is as below: Name Weight Height Gender Anne 150 65 F Rob 160 68 M George 180 65 M Greg 205 69 M i used the following commands: data<-scan("table.txt",

Re: [Rd] Problem with fitdistr for gamma in R 2.2.0

2005-11-17 Thread P Ehlers
Gregor, fitdistr(otm, "gamma", method="L-BFGS-B") works for me (on WinXP). Or you could specify "lower = 0". I no longer have 2.1.0 running, so I don't know why this wasn't needed in 2.1.0. "R version 2.2.0, 2005-10-24" MASS version: 7.2-20 -peter Gorjanc Gregor wrote: > Dear R developers,

[Rd] Problem with fitdistr for gamma in R 2.2.0

2005-11-17 Thread Gorjanc Gregor
Dear R developers, I have encountered strange behaviour of fitdistr for gamma in recent R build i.e. 2.2.0. I have attached the code for data at the end of this mail so you can reproduce the problem. In short, I am able to run fitdistr under 2.1.0 without problems, while I get the following error