Plot curve summary table for one group
Usage
plot_summary_table(
curve_summary_grp,
dilution_summary_grp = lifecycle::deprecated()
)
Value
A gridtable
object consisting of two tables. One from
plot_summary_table_char()
and plot_summary_table_num()
.
Examples
wf1_group <- c("Poor Linearity")
wf2_group <- c("Saturation")
r_corr <- c(0.951956)
pra_linear <- c(65.78711)
mandel_p_val <- c(2.899006e-07)
concavity <- c(-4133.501328)
curve_summary_grp <- data.frame(
wf1_group = wf1_group,
wf2_group = wf2_group,
r_corr = r_corr,
pra_linear = pra_linear,
mandel_p_val = mandel_p_val,
concavity = concavity
)
table <- plot_summary_table(curve_summary_grp)
grid::grid.draw(table)
# No column case
curve_summary_grp <- data.frame()
table <- plot_summary_table(curve_summary_grp)
table
#> NULL