There's probably a better way, but what I do in this situation is to capture output to a .pdf that I can page through.
pdf("c:/temp/myPlots.pdf",h=8.5,w=11) #this is "landscape" orientation plot(<your arguments here>) dev.off() You could also run a loop to open a new windows() device for each plot, but that gets messy if you have lots of plots. On 9/11/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hello! I have written an R script on a Windows platform where I > calculate eight result matrices I plot using matplot. I would like to > display the resulting plots successively, rather than simultaneously, > and I was wondering if anyone could point me in the right direction as > to how to do this. The graphs pop up in this manner by default when I > run my script in S-PLUS, with tabs separating them so I can view each > graph at my leisure. However when I run my script in R, each graph pops > up only for a moment before it is replaced by the next until I am left > with only the plot of the eighth matrix at the end of the script. Thanks > in advance for your help! > > Amy Paternostro > National Center for Environmental Economiccs > United States Environmental Protection Agency > 1200 Pennsylvania Avenue, NW > Washington, DC 20460 > [EMAIL PROTECTED] > > ______________________________________________ > R-help@stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. > ______________________________________________ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.