export_pdf: Export a plot list as a PDF

Description Usage Arguments Value Examples

Description

Takes a list of plot objects and builds a pdf document with those plots.

Usage

1
2
export_pdf(plot_list, pdf_path, overwrite = TRUE, height = 8.5,
  width = 11)

Arguments

plot_list

List containing plot objects.

pdf_path

Path for output pdf that will be created. Should end in ".pdf".

overwrite

Logical indicating whether to overwrite an existing directory with the same path. Defaults to TRUE for easy analysis interation. Adjust to FALSE to add individual images to existing directory, may throw errors about existing files.

height

Numeric object describing height of graphics device. Default unit is inches.

width

Numeric object describing width of graphics device. Default unit is inches.

Value

A directory with the elements of plot_list as png files

Examples

1
2
3
4
5
6
7
## Not run: 
plots <- mtcars %>% split(.$cyl) %>%
           purrr::map(~ ggplot(., aes(mpg, disp)) +
                          geom_point())
export_pdf(plots, "~/Desktop/mtcars_plots_by_cyl.pdf")

## End(Not run)

hemoshear/assayr2 documentation built on Nov. 8, 2019, 6:13 p.m.