В Thu, 23 Jul 2026 20:18:38 +0000 "Sorkin, John" <[email protected]> пишет:
> ggsave(plot=zz, > path=mypath, > filename=myfilename, > device="tiff", > width=4,height=3, > units="in", > dpi=600) Hard to give a better answer without seeing the plot, but since you're on Windows, try giving the additional argument type="cairo" to ggsave(...). Otherwise tiff() uses the old GDI code that doesn't perform anti-aliasing. The RStudio graphical device is distinct from tiff() and performs anti-aliasing as well. (Is is a requirement of your publisher to submit TIFF plots? It may be possible to preserve them in higher quality as PDF files.) -- Best regards, Ivan ______________________________________________ [email protected] mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide https://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.

