"Sivakumar Mohandass" <[EMAIL PROTECTED]> writes: > Dear all, > > A journal in which we wanted our manuscript published requires the > figures as a tiff, eps or PowerPoint formated. I tried converting .jpeg > files to these formats but it looses its quality both on the screen and > on paper. Could some one please help.
The postscript() device will do EPS, as will dev.copy2eps(). In fact, almost all graphics in Introductory Statistics with R were done with X11(height=3.5,width=4.4,pointsize=8) par(mar=c(4,4,3,2)+.1) and then (e.g.) plot(height,weight) dev.copy2eps(file="h-w.ps") (plus a epstopdf step, but you wouldn't need that) -- O__ ---- Peter Dalgaard Blegdamsvej 3 c/ /'_ --- Dept. of Biostatistics 2200 Cph. N (*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918 ~~~~~~~~~~ - ([EMAIL PROTECTED]) FAX: (+45) 35327907 ______________________________________________ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
