Re: [Rd] [R] Error loading libraries in MAC

2007-04-20 Thread Simon Urbanek
On Apr 19, 2007, at 4:54 PM, Matthew Keller wrote: > HI Mayte & Gregory, > > This is probably a question needing to be posted to r-sig-mac. A > search for this problem on that forum turns up lots of hits. I > think everyone is having these problems (which makes me pause about > whether to sw

[Rd] dendrogram definition

2007-04-20 Thread Deepayan Sarkar
Hi, I'm trying to create a "grob" representing a dendrogram object (for use as a legend with lattice), and I have a question regarding how a "dendrogram" should be interpreted. Are they by definition binary trees or can they in principle have more than two children? -Deepayan ___

Re: [Rd] AIX testers needed

2007-04-20 Thread Daniel Platt
Hi, The build worked smoothly. 'install.packages("e1071")' worked correctly (this used to crash on the only version I had managed to build before). I have noticed that there are a lot of permissions that I had to check after I did a "make install" . "make check" failed with the following mes

Re: [Rd] [R] Error loading libraries in MAC

2007-04-20 Thread Matthew Keller
HI Mayte & Gregory, This is probably a question needing to be posted to r-sig-mac. A search for this problem on that forum turns up lots of hits. I think everyone is having these problems (which makes me pause about whether to switch to Mac, given how much I use R). Below is a message from the r-s

[Rd] qr.coef: permutes dimnames; inserts NA; promises minimum-length (PR#9623)

2007-04-20 Thread brech
Full_Name: Christian Brechbuehler Version: 2.4.1 Patched (2007-03-25 r40917) OS: Linux 2.6.15-27-adm64-xeon; Ubuntu 6.06.1 LTS Submission from: (NULL) (24.61.47.236) Splus and R have different ideas about what qr.coef(qr()) should return, which is fine... but I believe that R has a bug in that it

Re: [Rd] setClass inside a function

2007-04-20 Thread Martin Morgan
"Iago Mosqueira (Cefas)" <[EMAIL PROTECTED]> writes: > Hi Martin, > > Thanks very much for your help. > >> Hi Iago -- >> >> Here's my attempt at an answer. >> >> "Iago Mosqueira (Cefas)" <[EMAIL PROTECTED]> writes: >> >> > set of S4 classes. But setClass is choking when my function >> is calle

[Rd] infinite recursion when printing former S4 objects

2007-04-20 Thread Seth Falcon
Hello all, An S4 class that contains matrix can be converted into a matrix using as(). When the resulting object is printed implicitly at the command line, all is well. When print() is explicitly called, I see an infinite recursion. Here is an example: ## create a subclass of matrix > setC

Re: [Rd] setClass inside a function

2007-04-20 Thread Iago Mosqueira \(Cefas\)
Hi Martin, Thanks very much for your help. > > Hi Iago -- > > Here's my attempt at an answer. > > "Iago Mosqueira (Cefas)" <[EMAIL PROTECTED]> writes: > > > Hello, > > > > I would like to create a function that gets passed a class name and > > then calls setClass, and a few other functions, i

Re: [Rd] setClass inside a function

2007-04-20 Thread Martin Morgan
Hi Iago -- Here's my attempt at an answer. "Iago Mosqueira (Cefas)" <[EMAIL PROTECTED]> writes: > Hello, > > I would like to create a function that gets passed a class name and > then calls setClass, and a few other functions, inside. I have done > this in the past with setmethod, creating acces

Re: [Rd] printf capture

2007-04-20 Thread mel
Simon Urbanek a écrit : > The wrapper: > > #include > > int printf(const char *format, ...) { > va_list (ap); > va_start(ap, format); > Rvprintf((char*)format, ap); > va_end(ap); > return 0; > } > > If you link this in your project (simply create a separate object file > with this),