Java Mailing List Archive

http://www.r-help.com/

Home » R Help for Statistical Computing »

Re: [R] multiple print commands in win.metafile()

Greg Snow

2010-03-20

Replies: Find Java Web Hosting

Author LoginPost Reply
You may want to check out the odfWeave package for another way to produce multiple plots in a format that can be easily saved as a word doc.

--
Gregory (Greg) L. Snow Ph.D.
Statistical Data Center
Intermountain Healthcare
greg.snow@(protected)
801.408.8111

> -----Original Message-----
> From: r-help-bounces@(protected)-
> project.org] On Behalf Of Kim Jung Hwa
> Sent: Thursday, March 18, 2010 10:37 AM
> To: r-help@(protected)
> Subject: [R] multiple print commands in win.metafile()
>
> Hi All,
>
> I need a file which I can import to MS Word, I'm trying win.metafile(),
> but
> it does not seem to support multiple print commands at once (please see
> below). Is there an alternative to get plots file which can be used in
> powerpoint/word?
>
> # R code:
> # this does not work; but same thing works with pdf()
> library(lattice)
> win.metafile("test.wmf")
> p1 <- xyplot(decrease ~ treatment, OrchardSprays, groups = rowpos,
>     type = "a",
>     auto.key =
>     list(space = "right", points = FALSE, lines = TRUE))
>
> p2 <- xyplot(sunspot.year ~ 1700:1988, xlab = "", type = "l",
>           scales = list(x = list(alternating = 2)),
>           main = "Yearly Sunspots")
>
> print(p1, split=c(1,1,2,1), more=TRUE)
> print(p2, split=c(2,1,2,1))
> dev.off()
>
> Can anyone help please, thanks,
> Kim
>
>  [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help@(protected)
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-
> guide.html
> and provide commented, minimal, self-contained, reproducible code.

______________________________________________
R-help@(protected)
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
©2008 r-help.com - Jax Systems, LLC, U.S.A.