[R] Adding data to existing plot with new=TRUE does not appear to work

2007-07-04 Thread Paul Lemmens
Dear all, I am trying to shove a number of cmdscale() results into a single plot (k=1 so I'm trying to get multiple columns in the plot). From ?par I learned that I can/should set new=TRUE in either par() or the plot function itself. However with the following reduced code, I get only a plot

Re: [R] Adding data to existing plot with new=TRUE does not appear to work

2007-07-04 Thread Paul Lemmens
Hi Petr, On 7/4/07, Petr PIKAL [EMAIL PROTECTED] wrote: par(new=T) plot(aa,bb, xlim=range(0,3), ylim=range(0,10), new=TRUE) So I need to activate the par(new=T) really just ahead of time when I need it, not as sort of a general clause at the beginning of my script? However you can get