Hi all, I have quite a specific problem with producing 300ppi plots in tiff format for publication. I have found ggsave to work beautifully with a single plot, which can then be exported to GIMP to compress the resulting large tiff file. However, it seems to run into trouble when plotting two figures next to each other, e.g.
plot1<-ggplot(.........) plot2<-ggplot(.........) grid.arrange(plot1, plot2, ncol=2) ggsave(filename = "Figure 1.tiff", scale = 1, width = 10, height = 5, units = "cm", dpi = 300) This results in only plot2 appearing in the resulting tiff file, with plot 1 nowhere to be seen. I will also have a figure which does not use ggplot, but consists of three plots produced with barplot2 and matplot, but presumably this faces a similar problem. Essentially, could anyone suggest a way of translating what appears in the plot appearing in the plot window (I use RStudio) to a high-resolution tiff file with as little fuss as possible? Many thanks, Adam -- Adam Hayward Post-Doctoral Research Associate, University of Sheffield http://adhayward.wordpress.com/ https://twitter.com/adhayward18 Department of Animal and Plant Sciences Alfred Denny Building University of Sheffield Western Bank Sheffield S10 2TN UK http://www.huli.group.shef.ac.uk/adam-personal.html [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org 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.