mipplot_print_pdf {mipplot} | R Documentation |
Print list of plots to pdf file
Description
This function plots a ggplot plots to PDF file.
Usage
mipplot_print_pdf(
p_list1,
filelabel = "",
filename = tryCatch(file.choose(new = TRUE), error = function(e) { NA })
)
Arguments
p_list1 |
A list of ggplot plot. |
filelabel |
A string of prefix of output filename. |
filename |
A string of filename. If it is given, filelabel is ignored. |
Value
No return value, called for side effects
Examples
if (interactive()) {
p <- mipplot_area(ar5_db_sample_data, ar5_db_sample_rule_table,
region = "World", scenario = "EMF27-450-FullTech")
mipplot_print_pdf(p)
}
[Package mipplot version 0.3.1 Index]