Hi,
Thank you for your reply.
This is exactly what I have done.
However, I would like to get the two plots next to each other (to use as one
figure).
At the moment the two plots are on two different pages.
my ps is set as:
postscript(file = "myRplot.ps",bg="transparent",pointsize=1.0,
paper="special",width=8,height=8)
Can it be that it has something to do with the size of the paper?
Or is there some other parameter I need to set?
Thank you!!!
Liat.
Dieter Menne wrote:
Liati <liats80 <at> hotmail.com> writes:
I would like to create one postscript file with two different xyplots
(which
library(lattice)
postscript("myps.ps")
xyplot(1~1,main="Plot 1")
xyplot(2~3,main="Plot 2")
dev.off()
Dieter