Re: [R] multiple plots in same graph window

2009-04-21 Thread William Dunlap
If you call par(new=TRUE) after each call to par(fig=c(xmin,xmax,ymin,ymax)) then a subsequent call to plot() will not erase the page. In S+ the par(new=TRUE) is not needed, but it does no harm. Bill Dunlap TIBCO Software Inc - Spotfire Division wdunlap tibco.com

Re: [R] multiple plots in same graph window

2009-04-21 Thread David Winsemius
On Apr 21, 2009, at 12:58 PM, BARRES-DE-ALMEIDA U. wrote: Hi, I'm trying to make multiple plots in a same graph window in R. The multiple graphs are showing up in the right positions on the window, but I'm having the problem that the graphic window is being refreshed every time a new plot

[R] multiple plots in same graph window

2009-04-21 Thread BARRES-DE-ALMEIDA U.
Hi, I'm trying to make multiple plots in a same graph window in R. The multiple graphs are showing up in the right positions on the window, but I'm having the problem that the graphic window is being refreshed every time a new plot is drawn, so that I end up with only the last graph coming up;