View source: R/growth_summaries.R
summary.gcFitLinear | R Documentation |
Generic summary function for gcFitLinear objects
## S3 method for class 'gcFitLinear'
summary(object, ...)
object |
object of class |
... |
Additional arguments. This has currently no effect and is only meant to fulfill the requirements of a generic function. |
A dataframe with parameters extracted from the linear fit.
# Create random growth dataset
rnd.dataset <- rdm.data(d = 35, mu = 0.8, A = 5, label = 'Test1')
# Extract time and growth data for single sample
time <- rnd.dataset$time[1,]
data <- rnd.dataset$data[1,-(1:3)] # Remove identifier columns
# Perform linear fit
TestFit <- growth.gcFitLinear(time, data, gcID = 'TestFit',
control = growth.control(fit.opt = 'l'))
summary(TestFit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.