Re: [R] Plot inside For loop

2009-03-25 Thread Jason Rupert
-- On Wed, 3/25/09, Rowe, Brian Lee Yung (Portfolio Analytics) wrote: > From: Rowe, Brian Lee Yung (Portfolio Analytics) > Subject: Re: [R] Plot inside For loop > To: "Mohan Singh" , r-help@r-project.org > Date: Wednesday, March 25, 2009, 1:18 PM > It's unclear to

Re: [R] Plot inside For loop

2009-03-25 Thread Mohan Singh
9 3:00 PM > To: Nutter, Benjamin > Cc: r-help@r-project.org > Subject: Re: [R] Plot inside For loop > > basically the for loop goes something like this > > setCounters(135); > > for(i in 1:query) { > plot(c2data[start1:count,],c3data[start1:count,],xlim=c(-30,100), >

Re: [R] Plot inside For loop

2009-03-25 Thread Mohan Singh
March 25, 2009 3:00 PM > To: Nutter, Benjamin > Cc: r-help@r-project.org > Subject: Re: [R] Plot inside For loop > > basically the for loop goes something like this > > setCounters(135); > > for(i in 1:query) { > plot(c2data[start1:count,],c3data[start1:count,]

Re: [R] Plot inside For loop

2009-03-25 Thread Nutter, Benjamin
March 25, 2009 3:00 PM To: Nutter, Benjamin Cc: r-help@r-project.org Subject: Re: [R] Plot inside For loop basically the for loop goes something like this setCounters(135); for(i in 1:query) { plot(c2data[start1:count,],c3data[start1:count,],xlim=c(-30,100), ylim=c(-30,90), sub=i);

Re: [R] Plot inside For loop

2009-03-25 Thread Mohan Singh
m afraid I'll need more > clarification on what you're trying to do. > > Benjamin > > -Original Message- > From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org > ] > On Behalf Of Mohan Singh > Sent: Wednesday, March 25, 2009 1:54 PM > To

Re: [R] Plot inside For loop

2009-03-25 Thread Nutter, Benjamin
r-help@r-project.org Subject: [R] Plot inside For loop Hi I am plotting a set of data inside a for loop. Is it possible to use plot in for loop without redrawing the whole plot? Am using par(new=TRUE) but that draws on top of the previous plot. Couldn't find any threads about

Re: [R] Plot inside For loop

2009-03-25 Thread Jun Shen
PM > To: r-help@r-project.org > Subject: [R] Plot inside For loop > > > Hi > > I am plotting a set of data inside a for loop. > > Is it possible to use plot in for loop without redrawing the whole > plot? Am using par(new=TRUE) but that draws on top of the pre

Re: [R] Plot inside For loop

2009-03-25 Thread Rowe, Brian Lee Yung (Portfolio Analytics)
March 25, 2009 1:54 PM To: r-help@r-project.org Subject: [R] Plot inside For loop Hi I am plotting a set of data inside a for loop. Is it possible to use plot in for loop without redrawing the whole plot? Am using par(new=TRUE) but that draws on top of the previous plot. Couldn'

[R] Plot inside For loop

2009-03-25 Thread Mohan Singh
Hi I am plotting a set of data inside a for loop. Is it possible to use plot in for loop without redrawing the whole plot? Am using par(new=TRUE) but that draws on top of the previous plot. Couldn't find any threads about the topic. Thanks Mohan -- ___