Skip to content

plots on multiple graphics windows?

2 messages · patzoul, Chiquoine, Ben

#
hmm not sure if this is what you're looking for but x11() opens up a new
graphics window so...
x=(1:5)
y=(1:5)
plot(x,y)
x11()
plot(x,y)
would give you the same graph on two different windows

Ben
-----Original Message-----
From: r-sig-finance-bounces at stat.math.ethz.ch
[mailto:r-sig-finance-bounces at stat.math.ethz.ch] On Behalf Of patzoul
Sent: Tuesday, November 25, 2008 4:37 PM
To: r-sig-finance at stat.math.ethz.ch
Subject: [R-SIG-Finance] [R-sig-finance] plots on multiple graphics
windows?


How do I plot graphs on multiple graphics windows?