[R] readline not found

2003-11-18 Thread Laurent Faisnel
Hi all, I just upgraded to R-1.8.0. Everything worked fine but command line editing does not work. This clearly indicates that readline has not been found in the compilation process. How could I explicitely indicate where to find it ? I use a Red Hat 8.0 system. I checked the FAQ which says

Re: [R] readline not found

2003-11-18 Thread Laurent Faisnel
The problem is solved. I cc this mail to John who probably had the same kind of problem. Peter Dalgaard wrote: Laurent Faisnel [EMAIL PROTECTED] writes: That's the part of the log where you have the debug information (at the top) : configure:11773: gcc -o conftest -g -O2 -L/usr/local/lib

[R] problems trying to extend a class

2003-09-29 Thread Laurent Faisnel
Hi all, I have been using for quite a long time a script where a class extends another one (without trouble). But I now have problems of that kind while trying to run the script : Error in insertMethod(methods, sig, args, def, TRUE) : inserting method corresponding to empty signature I

Re: [R] installation : make fails (R-1.7.1 on RedHat 8.0)

2003-09-26 Thread Laurent Faisnel
Peter Dalgaard BSA wrote: Laurent Faisnel [EMAIL PROTECTED] writes: Hi, I'm trying to compile R-1.7.1 from source (on a RedHat 8.0) instead of using the binary version, as it has often been advised. However I don't manage to find a solution to the following error which occurs during the make

Re: [R] installation : make fails (R-1.7.1 on RedHat 8.0)

2003-09-26 Thread Laurent Faisnel
Peter Dalgaard BSA wrote: Laurent Faisnel [EMAIL PROTECTED] writes: Peter Dalgaard BSA wrote: Laurent Faisnel [EMAIL PROTECTED] writes: Hi, I'm trying to compile R-1.7.1 from source (on a RedHat 8.0) instead of using the binary version, as it has often been advised. However I don't manage

Re: [R] R Production Performance

2003-09-23 Thread Laurent Faisnel
Zitan Broth wrote: Greetings All, Been playing with R and it is very easy to get going with the UI or infile batch commands :-) What I am wondering is how scalable and fast R is for running as part of a web service. I believe R is written in C which is a great start, but what are peoples

Re: [R] 3D plot/surface rotation

2003-09-17 Thread Laurent Faisnel
[EMAIL PROTECTED] wrote: How do I rotate 3D plots/surfaces generated by either cloud or wireframe? wireframe - I think you have to set the screen parameter, see the example from ?wireframe, it seems to me you can rotate the surface as you like. I believe it's the same thing for cloud, but I did

Re: [R] Problem in installing quantreg package

2003-09-11 Thread Laurent Faisnel
Swagata Nandi wrote: Hi, I was trying to install quantreg package in an R session, but got the following error message: ERROR: cannot write to or create directory '/usr/lib/R/library' Can anyone suggest what I need to do? Swagata Nandi __ [EMAIL

[R] R-1.7.1 gets installed without default packages withoutreadline

2003-08-19 Thread Laurent Faisnel
Hi all, Trying to install R-1.7.1 on a RedHat 8.0 platform, I have a few problems. R gets installed without default packages (but base and ctest) : make script fails at the end of the procedure (configure is made successfully). This is the (translated) log I have : /gcc -I../../../../include

Re: [R] R-1.7.1 gets installed without default packages withoutreadline

2003-08-19 Thread Laurent Faisnel
Thomas W Blackwell wrote: Laurent - I had no trouble with configuring, compiling and running R under Redhat 8.0. My system now gives uname -a Linux host 2.4.18-14smp #1 SMP Wed Sep4 12:34:47 EDT 2002 i686 i686 i386 GNU/Linux I have the same rpm -qa | grep readline readline41-4.1-14

Re: [R] S3 and S4 classes

2003-07-24 Thread Laurent Faisnel
I've made some changes (in bold) following your comments : # class definition : setClass(MyClass, representation(mynumber=numeric)); # the initilization method : setMethod(initialize,MyClass, function(.Object) { [EMAIL PROTECTED] - 10; return(.Object);