I am trying to save some graphical output including a legend in the
Windows Enhanced Metafile (EMF) format.
This fails when xyplot() is used rather than plot().
Here is a simple example:
require(lattice)
a <- c(1:10)
b <- c(2,4,5,2,3,5,7,8,9,5)
# Output can be saved (or copied to the clipboard) as a Windows EMF image
file
# from the Graphics Device output window.
plot(a , b)
legend("topleft", "Test", title="Legend")
# Output cannot be saved (or copied) as an EMF
plot.new()
xyplot(a ~ b)
legend("topleft", "Test", title="Legend")
I am using R version 2.12.0 (2010-10-15) on platform "i386-pc-mingw32"
Thanks for any help or suggestions.
David Luckett
Senior Research Scientist
EH Graham Centre
Charles Sturt University and Industry & Investment NSW
Wagga_Wagga NSW 2650 Australia
www.GrahamCentre.net www.industry.nsw.gov.au
This message is intended for the addressee named and may...{{dropped:7}}
______________________________________________
[email protected] mailing list
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.