[R] Help : trellis.device

Chuck Cleland ccleland at optonline.net
Tue May 18 15:05:16 CEST 2004


   If you want to save both figures in the same file and if PDF is 
acceptable, try this:

a <- c(1,10)
b <- c(1,10)
c <- c(2,20)
d <- c(2,20)
library(lattice) # require is design for use inside functions

pdf("test.pdf")
trellis.device(new = FALSE, col = TRUE, bg = "white")
plot(a,b)
plot(c,d)
dev.off()

hope this helps,

Chuck

??? wrote:
> I want to save plots. So I use the R as fallows :
> --------------------------------
> a <- c(1,10)
> b <- c(1,10)
> c <- c(2,20)
> d <- c(2,20)
> require(lattice)
> trellis.device("bmp", file = "test.bmp", bg = "white")
> print(plot(a,b))
> print(plot(c,d))
> dev.off()
> --------------------------------
>  
> However, I got a image of plot(c,d).
> I want to get a image of plot(a,b) and plot(c,d).
>  
> Can anyone suggest a solution?

-- 
Chuck Cleland, Ph.D.
NDRI, Inc.
71 West 23rd Street, 8th floor
New York, NY 10010
tel: (212) 845-4495 (Tu, Th)
tel: (732) 452-1424 (M, W, F)
fax: (917) 438-0894




More information about the R-help mailing list