table_group_fluorescence_spline | R Documentation |
Generate a grouped results table for spline fits with average and standard deviations
table_group_fluorescence_spline(flTable, html = FALSE)
flTable |
An object of class |
html |
(Logical) Should column headers contain html formatting? |
A data frame with grouped spline fit results. Empty cells indicate that no reliable fit could be determined.
# load example dataset
input <- read_data(data.growth = system.file("lac_promoters_growth.txt", package = "QurvE"),
data.fl = system.file("lac_promoters_fluorescence.txt", package = "QurvE"),
csvsep = "\t",
csvsep.fl = "\t")
# Run workflow
res <- fl.workflow(grodata = input, ec50 = FALSE, fit.opt = "s",
x_type = "time", norm_fl = TRUE,
dr.parameter = "max_slope.spline",
suppress.messages = TRUE,
parallelize = FALSE)
table_group_fluorescence_spline(res$flFit$flTable)
# with HTML formatting
DT::datatable(table_group_fluorescence_spline(res$flFit$flTable, html = TRUE),
escape = FALSE) # Do not escape HTML entities
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.