Skip to content
Prev 42902 / 398506 Next

Multiple groupedData plots in a postscript file using a loop

Karl Knoblick wrote:

            
Yep, sorry. You need to print() a lattice plot in this case:

trellis.device("postscript", file = "PSFile.ps")
for (i in 1:1)
{
   print(plot(Loblolly))
}
dev.off()


Uwe Ligges