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
--==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
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
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
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
[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
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