Skip to content
Prev 246379 / 398502 Next

plot without points overlap

Hi,

You can set the device region in inches using the "pin" argument (see
?par maybe halfway down or so).  You can also set the aspect ratio in
plot(), but I am not sure that is really what you want (see
?plot.window for that).

Two Examples
#######
par(pin = c(2, 4))
plot(1:10)
dev.off()

plot(1:10, asp = 2)
#######

Hope that helps,

Josh
On Tue, Jan 4, 2011 at 8:46 AM, joonR <joonair at gmail.com> wrote: