Learn R Programming

QurvE (version 1.1.1)

summary.gcFit: Generic summary function for gcFit objects

Description

Generic summary function for gcFit objects

Usage

# S3 method for gcFit
summary(object, ...)

Value

A dataframe with parameters extracted from all fits of a workflow.

Arguments

object

object of class gcFit

...

Additional arguments. This has currently no effect and is only meant to fulfill the requirements of a generic function.

Examples

Run this code
# \donttest{
# Create random growth data set
rnd.data1 <- rdm.data(d = 35, mu = 0.8, A = 5, label = 'Test1')
rnd.data2 <- rdm.data(d = 35, mu = 0.6, A = 4.5, label = 'Test2')

rnd.data <- list()
rnd.data[['time']] <- rbind(rnd.data1$time, rnd.data2$time)
rnd.data[['data']] <- rbind(rnd.data1$data, rnd.data2$data)

# Run growth curve analysis workflow
gcFit <- growth.gcFit(time = rnd.data$time,
                       data = rnd.data$data,
                       parallelize = FALSE,
                       control = growth.control(fit.opt = 's',
                                                suppress.messages = TRUE,
                                                nboot.gc = 20))
summary(gcFit)
# }

Run the code above in your browser using DataLab