plot.PlateObj {PKbioanalysis} | R Documentation |
Plotting 96 well plate
## S3 method for class 'PlateObj'
plot(
x,
color = "conc",
Instrument = "",
caption = "",
label_size = 15,
path = NULL,
...
)
x |
PlateObj |
color |
character. Coloring variable. Either "conc", "time", "factor", "samples", "TYPE" |
Instrument |
A string placed at subtitle |
caption |
A string place at plate caption |
label_size |
numeric. Size of the label. Default is 15 |
path |
Default is NULL, if not null, must be a path to save plate image |
... |
additional arguments passed to ggplot2::ggsave |
ggplot object
plate <- generate_96("new_plate", c("C", "D", "E"), 11) |>
add_blank(IS = FALSE, analyte = FALSE) |>
add_blank(IS = TRUE, analyte = FALSE) |>
add_samples(c(
"RD_per1", "RD_in1", "RD_T30", "RD_T60", "RD_T90", "RD_per2", "RD_in2",
"EE_in0", "EE_T30", "EE_in30", "EE_T60", "EE_in60", "EE_T90", "EE_in90"
))
plot(plate)