table_group_growth_linear {QurvE} | R Documentation |
Generate a grouped results table for linear fits with average and standard deviations
Description
Generate a grouped results table for linear fits with average and standard deviations
Usage
table_group_growth_linear(gcTable, html = FALSE)
Arguments
gcTable |
An object of class |
html |
(Logical) Should column headers contain html formatting? |
Value
A data frame with grouped linear fit results. Empty cells indicate that no reliable fit could be determined.
Examples
# Create random growth data set
rnd.data <- rdm.data(d = 30, mu = 0.6, A = 4.5, label = "Test2")
# Run growth curve analysis workflow
res <- growth.workflow(time = rnd.data$time,
data = rnd.data$data,
fit.opt = "l",
ec50 = FALSE,
export.res = FALSE,
parallelize = FALSE,
suppress.messages = TRUE)
table_group_growth_linear(res$gcFit$gcTable)
# with HTML formatting
DT::datatable(table_group_growth_linear(res$gcFit$gcTable, html = TRUE),
escape = FALSE) # Do not escape HTML entities
[Package QurvE version 1.1.1 Index]