plate_view | R Documentation |
Converts the real-time data into a ggplot figure. The layout is either 8x12 or 16x24 for 96- and 384-well plates, respectively.
plate_view(df, meta, plate = 96)
df |
Real-time dataframe |
meta |
Dataframe containing well IDs and Sample IDs to title each facet. |
plate |
Integer either 96 or 384 to denote microplate type. |
A ggplot object
# This test takes >5 sec
file <- system.file(
"extdata/input_files",
file = "test2.xlsx",
package = "quicR"
)
# Get the real-time data.
df_ <- get_real(file, ordered = FALSE)[[1]] |>
as.data.frame()
sample_locations <- get_sample_locations(
file,
dilution_bool = TRUE,
dilution_fun = function(x) -log10(x)
)
plate_view(df_, sample_locations)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.