Re: [R] multiple plots in different windows

2004-02-06 Thread Bernardo Rangel Tura
At 14:29 05-02-2004, you wrote: Hi all, I'd like to generate a number of plots to compare different vectors I have stored in a list. To do this I do something like (in a linux system): for(i in 1:L) { X11() plot(listOfFunctions[[i]]) } First question is: is this the right way to create

[R] multiple plots in different windows

2004-02-05 Thread Giampiero Salvi
Hi all, I'd like to generate a number of plots to compare different vectors I have stored in a list. To do this I do something like (in a linux system): for(i in 1:L) { X11() plot(listOfFunctions[[i]]) } First question is: is this the right way to create several plots (in different windows) ?