
Get Data from GlySmith Result
cast_exp.RdHelper functions to get processed experiment, plots, tables or data from a glysmith result object.
Value
cast_exp(): aglyexp::experiment().cast_plot(): aggplot2::ggplot().cast_table(): atibble::tibble().cast_data(): can be any R object.
Examples
if (FALSE) { # \dontrun{
library(glyexp)
exp <- real_experiment2
result <- forge_analysis(exp)
cast_exp(result)
cast_table(result)
cast_table(result, "summary")
} # }