Re: [R] playwith error message

2010-02-01 Thread Liviu Andronic
On 2/1/10, Sigbert Klinke wrote: > efaApp <- function(data, ...) > { > playwith (myplot(data[,8:9]), > click.mode = "Brush", > ) > } > This does work if you use plot() directly: efaApp <- function(data, ...) { playwith (plot(data[,1:2]), click.mode = "B

Re: [R] playwith error message

2010-02-01 Thread Sigbert Klinke
Hi, > Can you post a reproducible example that leads to this error? myplot <- function(x) { plot(x) } efaApp <- function(data, ...) { playwith (myplot(data[,8:9]), click.mode = "Brush", ) } efaApp(as.data.frame(Boston)) My plot routines even return invisibly a lis

Re: [R] playwith error message

2010-02-01 Thread Liviu Andronic
Hello On 2/1/10, Sigbert Klinke wrote: > I'am using the playwith library to write my own small GUI application. > But I get the following error under Windows and Linux (Ubuntu): > > Error in if ((modeOK %in% c("Identify", "Brush")) && (actions$ident == : > Fehlender Wert, wo TRUE/FALSE nötig

[R] playwith error message

2010-02-01 Thread Sigbert Klinke
Hi, I'am using the playwith library to write my own small GUI application. But I get the following error under Windows and Linux (Ubuntu): Error in if ((modeOK %in% c("Identify", "Brush")) && (actions$ident == : Fehlender Wert, wo TRUE/FALSE nötig ist Under linux my R program simply continues,