Learn R Programming

QurvE (version 1.1.1)

table_group_growth_spline: Generate a grouped results table for spline fits with average and standard deviations

Description

Generate a grouped results table for spline fits with average and standard deviations

Usage

table_group_growth_spline(gcTable, html = FALSE)

Value

A data frame with grouped spline fit results. Empty cells indicate that no reliable fit could be determined.

Arguments

gcTable

An object of class gcTable

html

(Logical) Should column headers contain html formatting?

Examples

Run this code
# 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 = "s",
                       ec50 = FALSE,
                       export.res = FALSE,
                       parallelize = FALSE,
                       suppress.messages = TRUE)

table_group_growth_spline(res$gcFit$gcTable)

# with HTML formatting
DT::datatable(table_group_growth_spline(res$gcFit$gcTable, html = TRUE),
              escape = FALSE) # Do not escape HTML entities

Run the code above in your browser using DataLab