[Rd] linker errors on ia64: open.o: @gprel relocation against dynamic symbol f__buflen

2004-03-26 Thread horbelt
hello, I just failed to compile R 1.8.1 and also the latest beta R-1.9.0beta_2004-03-22.tar.gz on an ia64 architecture. When it comes to linking the Lapack library, the following error occurs six times: /usr/bin/ld: open.o: @gprel relocation against dynamic symbol f__buflen Here is some

[Rd] Mac OS X Limited User cannot access R (PR#6700)

2004-03-26 Thread nave
Full_Name: Adam nave Version: 1.8.1 OS: OS X - 10.2.x and 10.3.x Submission from: (NULL) (141.140.9.48) When trying to give a limited user set to use only these applications access to the R application, Mac OS X will not allow it. This may be related to CFBundle and some missing bundle info in

RE: [Rd] Odd error in R CMD check (PR#6695)

2004-03-26 Thread Warnes, Gregory R
There are errors, though, on ooplot.default and is.what(pi). Yes, this is why I was working with the snapshot. ;^) -G LEGAL NOTICE\ Unless expressly stated otherwise, this messag...{{dropped}} __ [EMAIL PROTECTED] mailing list

Re: [Rd] Mac OS X Limited User cannot access R (PR#6700)

2004-03-26 Thread stefano iacus
you mean StartR I guess. If should be different for the framework version. You can have a preview on http://www.economia.unimi.it/R Please let me know. stefano On Mar 26, 2004, at 5:01 PM, [EMAIL PROTECTED] wrote: Full_Name: Adam nave Version: 1.8.1 OS: OS X - 10.2.x and 10.3.x Submission from:

Re: [Rd] Mac OS X Limited User cannot access R (PR#6700)

2004-03-26 Thread Adam Nave
Yes, StartR/RAqua is what I'm having trouble with. I tried the 1.90 preview and it worked just fine. However, I'm a little hesitant to be using a beta. Is 1.90 final coming soon? Thanks for the quick followup. --Adam Nave --On Friday, March 26, 2004 6:09 PM +0100 stefano iacus [EMAIL

Re: [Rd] Mac OS X Limited User cannot access R (PR#6700)

2004-03-26 Thread Adam Nave
Well, beta is good enuf for me, but I'm a lab admin - I'd have to run it by a bunch of people who may not be willing to entrust their data to untested software. You're also probably not going to get good feedback from the students either unless you have a talkback enabled version. But I'll see

Re: [Rd] Mac OS X Limited User cannot access R (PR#6700)

2004-03-26 Thread stefano iacus
Well, 1.9.0 planned for april 4th has been delayed a bit but the framework version you find on the url I gave is almost the definitive. You can probably just wait a couple of weeks and install the release version and, in any case, I strongly suggest to upgrade to R 1.9.0 and remove StartR/Raqua

Re: [Rd] Mac OS X Limited User cannot access R (PR#6700)

2004-03-26 Thread Adam Nave
Well, if it's coming that soon, I'll just wait it out. Thanks all! --Adam --On Friday, March 26, 2004 9:28 PM +0100 stefano iacus [EMAIL PROTECTED] wrote: Well, 1.9.0 planned for april 4th has been delayed a bit but the framework version you find on the url I gave is almost the definitive.

Re: [Rd] R 1.9.0 alpha

2004-03-26 Thread Thomas Lumley
On Wed, 24 Mar 2004, Duncan Murdoch wrote: Can you try to put together a small example that illustrates it? One example that happened while trying to answer another R-help question R 1.8.1 library(nlme) example(nlme.nlsList) q(yes) R 1.9.0-beta on startup Error in namespaceExport(ns, exports)

Re: [Rd] linker errors on ia64: open.o: @gprel relocation against dynamic symbol f__buflen

2004-03-26 Thread Prof Brian Ripley
gcc 2.96 does not exist: see gcc.gnu.org. It was never released and the `versions' shipped with various Linux distros are renowned for their bugs. You almost certainly need a shared -lg2c, which has been standard for quite a while now (gcc 3.1 I believe). Is there any reason now to use gcc

[Rd] lookup.xport in foreign ignoring some datasets (PR#6701)

2004-03-26 Thread svetlana . eden
The Details. In the following version. version _ platform i386-pc-linux-gnu arch i386 os linux-gnu system i386, linux-gnu status major1 minor8.1 year 2003 month11 day 21 language R lookup.xport ignores some datasets in sas export file. File

[Rd] cbind/rbind fail on matrixes containing lists (PR#6702)

2004-03-26 Thread gregory_r_warnes
Today's R 1.9.0 beta: m1 [,1] [,2] [,3] [,4] [1,] NA NA NA NA [2,] NA NA NA NA [3,] NA NA NA NA [4,] NA NA NA NA class(m1[1,1]) [1] list cbind(m1,m1) Error in cbind(...) : cannot create a matrix from these types rbind(m1,m1) Error in rbind(...) : cannot

Re: [Rd] lookup.xport in foreign ignoring some datasets (PR#6701)

2004-03-26 Thread Peter Dalgaard
[EMAIL PROTECTED] writes: The following datasets were not read by lookup.xport UR, URN, VIS, VIT, VO. The example of the SAS code used to builds the empty data from the non-empty data in export.xpt. options nofmterr; proc options;run; libname x sasv5xpt H:\projects\export.xpt;

Re: [Rd] cbind/rbind fail on matrixes containing lists (PR#6702)

2004-03-26 Thread Thomas Lumley
On Fri, 26 Mar 2004, Thomas Lumley wrote: Yep, bind.c:do_bind has switch(mode) { case NILSXP: case LGLSXP: case INTSXP: case REALSXP: case CPLXSXP: case STRSXP: break; default: errorcall(call, cannot create a matrix from these types);