Displaying 1 result from an estimated 1 matches for "anyplot".
Did you mean:
addplot
2002 Jan 16
1
Postsript/Lattice interaction
...Christian
Ritter's announcement this morning, I downloaded the new versions of
lattice and grid. I find that loading the lattice library causes
postcript() to include a blank first page when creating a file. Like
this:
> # Create regular postscript file of a plot
> postscript(file="anyplot.ps",horizontal=FALSE, paper="letter")
> plot(any.data)
> dev.off()
> # So far so good -- a one page plot.
> # Now load lattice library
> library(lattice)
Loading required package: grid
>
> # Now try to plot again
> postscript(file="anyplot.ps"...