ggplot2 plot fill page in landscape (pdf)
13,503
See this discussion; bottom-line is you probably want to use paper=special
and set width and height explicitly.
Edit:
Here's a lazy trick to use ggsave with multiple pages,
library(ggplot2)
plots = replicate(8, qplot(1,1), simplify=FALSE)
library(gridExtra)
p <- do.call(marrangeGrob, c(plots,ncol=1,nrow=1))
ggsave("multipage.pdf", p, width=11, height=8.5)
(but otherwise, pdf(...)
followed by a for
loop is just fine and sometimes clearer)
Related videos on Youtube
Comments
-
Dave 8 months
I'm trying to render a plot to a PDF using the following approach:
pdf('~/Desktop/test.pdf', bg = "white", paper="USr") p <- ggplot(df, aes(something)) + geom_bar(); print(p) # I'm actually printing a bunch of graphs to the PDF dev.off()
The "USr" in the PDF function is setting up the PDF to print in landscape mode. The plot is produced and is centered on the page but there is a large right/left margin and the plot isn't scaling out to take up the full 11" available to it.
I've tried some tweaks to the pdf(...) command and to the ggplot itself. Is there a solution this way or do I need to use a dedicated reporting/pdf package like sweave or knitr?
-
Beasterfield about 10 yearsWhat happens when you use
ggsave( "~/Desktop/test.pdf", ... )
and specify thewidth
andheight
explicitly?
-
-
TheSciGuy about 4 yearsNot lazy at all! Efficient!
-
Von over 3 yearsFWIW, this only worked for me if I specified the arguments to
marrangeGrob
as a list:p <- do.call(marrangeGrob, args = list(grobs = plots, ncol=1, nrow=1))
; otherwise I got a missing argument error