Get list of paginated plots
applyPaginate.Rd
When creating your plot, use ggforce::facet_wrap_paginate or ggforce::facet_grid_paginate instead of facet_wrap/grid.
applyPaginate(pl)
Value
list of ggplots
See also
Other IQR plot:
IQRggplot()
,
aux_plotlayout()
,
createPages_IQRoutputFigure()
,
plot.IQRoutputFigure()
,
print.IQRoutputFigure()
,
print.IQRoutputFigureList()
,
print.IQRslideplot()
,
printGrid()
,
scale_color_IQRtools()
,
scale_fill_IQRtools()
,
scale_y_log10_IQRtools()
,
summary.IQRoutputFigure()
,
themeIQRtools()
Examples
if (FALSE) { # \dontrun{
# adapted from ggforce examples
library(ggplot2)
pl <- ggplot(diamonds) +
geom_point(aes(carat, price), alpha = 0.1) +
ggforce::facet_grid_paginate(color ~ cut:clarity, ncol = 3, nrow = 3, page = 4)
plotlist <- applyPaginate(pl)
plotlist[[1]]
plotlist[[5]]
length(plotlist)
} # }