Re: [Rd] Installing Rmpi on 64-bit Linux Athlon

2006-10-10 Thread c . farrow
Hi, I think you need to reverse the order of the first two lines as currently you are using $prefix before it is defined. setenv prefix "/home/a347549/local64" setenv LD_LIBRARY_PATH "-L$prefix/lib -L$prefix/lib64" colin. On 9 Oct, McGehee, Robert wrote: > Hello, > We have recently added a 6

Re: [Rd] Installing Rmpi on 64-bit Linux Athlon

2006-10-10 Thread Hin-Tak Leung
No, both of you are not doing it correctly - you are confused about linker problem with runtime issue. LD_LIBRARY_PATH is a runtime flag. You want to set the linker flag to influence the linker behavior: setenv LDFLAGS="-L$prefix/lib -L$prefix/lib64" or edit the makefile or Makevars do the equiv

Re: [Rd] read.table versus read.csv (PR#9284)

2006-10-10 Thread Ben Bolker
Arnost.Komarek med.kuleuven.be> writes: > > Dear R Core Team, > > Help to 'read.table' claims that > 'read.csv' is identical to 'read.table' except for the defaults. Pedantically speaking, the claim is true: the difference is in the default for the quote= argument. > > However, 'read.tabl

[Rd] possible bug? (PR#9285)

2006-10-10 Thread richj
=20 =20 I use the FEAR package available from=20 =20 http://www.clemson.edu/economics/faculty/wilson/ =20 which works perfectly in Rv2.2.0; after installing from a local zip and loading I find: =20 USING R version 2.2.0 =20 > local({pkg <- select.list(sort(.packages(all.available =3D TRUE

Re: [Rd] possible bug? (PR#9285)

2006-10-10 Thread Roger Bivand
On Tue, 10 Oct 2006 [EMAIL PROTECTED] wrote: > =20 Not a bug. Please contact the author of the non-CRAN, binary-only package, as requested in FAQ 9.2: "Bug reports on contributed packages should be sent first to the package maintainer, and only submitted to the R-bugs repository by package mai

Re: [Rd] possible bug? (PR#9285)

2006-10-10 Thread Duncan Murdoch
On 10/10/2006 12:58 PM, [EMAIL PROTECTED] wrote: > =20 > > =20 > > I use the FEAR package available from=20 > > =20 > > http://www.clemson.edu/economics/faculty/wilson/ You should contact Prof. Wilson-- this is a bug in his package, not in R. Perhaps all that is needed is for it to be re-bui

[Rd] error in dput applied to dataframe (PR#9286)

2006-10-10 Thread higgins
Full_Name: Daniel F Higgins Version: 2.4.0 OS: Windows XP and Mac OSX Submission from: (NULL) (128.111.242.49) Create a dataframe as indicated below and apply 'dput' to it; note that the row.names attribute is incorrect! > aaa <- c("AAA","BBB","AAA") > bbb <- c(1,2,3) > df <- data.frame(aaa,bbb)

[Rd] png problem on Intel Mac (PR#9287)

2006-10-10 Thread higgins
Full_Name: Daniel F Higgins Version: 2.4.0 OS: Mac OS X 10.4.8 Submission from: (NULL) (128.111.242.49) When running the commands png(filename='aaa.jpg', width=480, height=480) plot(c(1,2,3)) in the Mac OSX graphical interface window, the png file 'aaa.png' is created if one clicks on the 'X' i

Re: [Rd] png problem on Intel Mac (PR#9287)

2006-10-10 Thread Don MacQueen
At 10:57 PM +0200 10/10/06, [EMAIL PROTECTED] wrote: >Full_Name: Daniel F Higgins >Version: 2.4.0 >OS: Mac OS X 10.4.8 >Submission from: (NULL) (128.111.242.49) > > >When running the commands > >png(filename='aaa.jpg', width=480, height=480) >plot(c(1,2,3)) > >in the Mac OSX graphical interface win

[Rd] dispatching on group generics with more than one formal

2006-10-10 Thread Parlamis Franklin
please see the code below. foo2 fails to dispatch correctly, but foo does fine. i have tried 'cacheMetaData(1)' and a number of different variants of 'cacheGenericsMetaData', on the possibility there is a caching issue. but i still can't sort it out. also one general question: does it rea

[Rd] expression as a parameter of binom.test (PR#9288)

2006-10-10 Thread savicky
Full_Name: Petr Savicky Version: 2.4.0 OS: Fedora Core release 2 Submission from: (NULL) (62.24.91.47) the error is > binom.test(0.56*1,1) Error in binom.test(0.56 * 1, 1) : 'x' must be nonnegative and integer while > binom.test(5600,1) yields correct result. Th