[Rd] Graphics device API

2004-02-09 Thread Simon Urbanek
I just wrote a graphics device taking the X11 device in R-devel as a guide (I was told it's the reference device). It works perfectly with R-devel, but I just noticed that the API (e.g. the use of R_GE_gcontext) is incompatible with previous versions of R. Is the current API in R-devel set in s

[Rd] Returned mail (PR#6561)

2004-02-09 Thread mailgate01
--==M2004020923123623794 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit --- The message cannot be delivered to the following address. --- [EMAIL PROTECTED]Permanent error involving remote host. 554 Transaction failed (too many hops) --==M2004020923123623794 Cont

RE: [Rd] apply on logical data frame together with all (PR#6560

2004-02-09 Thread andy_liaw
Wrap your data frame in data.matrix() and you should be fine; e.g., apply(data.matrix(df), 1, all) Don't think this qualifies as bug... Andy > From: [EMAIL PROTECTED] > > Full_Name: Roland Puntaier > Version: 1.8.1 > OS: Windows XP > Submission from: (NULL) (62.99.238.78) > > > I have a da

RE: [Rd] apply on logical data frame together with all (PR#6560 )

2004-02-09 Thread Liaw, Andy
Wrap your data frame in data.matrix() and you should be fine; e.g., apply(data.matrix(df), 1, all) Don't think this qualifies as bug... Andy > From: [EMAIL PROTECTED] > > Full_Name: Roland Puntaier > Version: 1.8.1 > OS: Windows XP > Submission from: (NULL) (62.99.238.78) > > > I have a da

Re: [Rd] apply on logical data frame together with all (PR#6560)

2004-02-09 Thread Duncan Murdoch
On Mon, 9 Feb 2004 18:13:29 +0100 (CET), [EMAIL PROTECTED] wrote : >Full_Name: Roland Puntaier >Version: 1.8.1 >OS: Windows XP >Submission from: (NULL) (62.99.238.78) > > >I have a data frame with some columns being logical. >I wanted to calculate a column that is an AND combination of the other

Re: [Rd] apply on logical data frame together with all (PR#6560)

2004-02-09 Thread Peter Dalgaard
[EMAIL PROTECTED] writes: > Full_Name: Roland Puntaier > Version: 1.8.1 > OS: Windows XP > Submission from: (NULL) (62.99.238.78) > > > I have a data frame with some columns being logical. > I wanted to calculate a column that is an AND combination of the other logical > columns. > I tried to us

[Rd] apply on logical data frame together with all (PR#6560)

2004-02-09 Thread roland . puntaier
Full_Name: Roland Puntaier Version: 1.8.1 OS: Windows XP Submission from: (NULL) (62.99.238.78) I have a data frame with some columns being logical. I wanted to calculate a column that is an AND combination of the other logical columns. I tried to use apply(df,1,all) It did not work because of