| table_group_growth_model | R Documentation | 
Generate a grouped results table for parametric fits with average and standard deviations
table_group_growth_model(gcTable, html = FALSE)
| gcTable | An object of class  | 
| html | (Logical) Should column headers contain html formatting? | 
A data frame with grouped model fit results. Empty cells indicate that no reliable fit could be determined.
# Create random growth data set
rnd.data <- rdm.data(d = 35, mu = 0.8, A = 5, label = "Test1")
# Run growth curve analysis workflow
res <- growth.workflow(time = rnd.data$time,
                       data = rnd.data$data,
                       fit.opt = "m",
                       ec50 = FALSE,
                       export.res = FALSE,
                       parallelize = FALSE,
                       suppress.messages = TRUE)
table_group_growth_model(res$gcFit$gcTable)
# with HTML formatting
DT::datatable(table_group_growth_model(res$gcFit$gcTable, 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.