Plot over multiple pages

There are multiple ways to do the pagination: ggforce or gridExtra::marrangeGrob. See also this answer for another example. ggforce: library(ggplot2) # install.packages(“ggforce”) library(ggforce) # Standard facetting: too many small plots ggplot(diamonds) + geom_point(aes(carat, price), alpha = 0.1) + facet_wrap(~cut:clarity, ncol = 3) # Pagination: page 1 ggplot(diamonds) + geom_point(aes(carat, price), alpha = 0.1) + facet_wrap_paginate(~cut:clarity, … Read more