plot_to_pdf: Takes a list of 'mtp' objects and plots them to pdf

Description Usage Arguments Value See Also Examples

Description

Takes a list of mtp objects and plots them to pdf

Usage

1
plot_to_pdf(list_of_mtp, file_name = "my_plots.pdf", ...)

Arguments

list_of_mtp

A list of mtp objects

Value

nothing but saves a pdf files of ggplot's

See Also

plot_mtp for plotting a mtp object and plot_mtp_list for making a list of ggplot objects

Other plot.functions: plot_mtp_list, plot_mtp

Examples

1
2
3
4
5
6
7
8
library(dplyr)
df_plots <- df_mtp %>%
transmute(title = paste("file", .$file[1], "sheet", .$sheet[1], "plate", .$Plate[1]), mtp = mtp)

dl <- df_plots$mtp
names(dl) <- df_plots$title

plot_to_pdf(dl)

JannikVindeloev/RAPr documentation built on May 7, 2019, 10:21 a.m.