summary.gcFitSpline {QurvE} | R Documentation |
Generic summary function for gcFitSpline objects
Description
Generic summary function for gcFitSpline objects
Usage
## S3 method for class 'gcFitSpline'
summary(object, ...)
Arguments
object |
object of class |
... |
Additional arguments. This has currently no effect and is only meant to fulfill the requirements of a generic function. |
Value
A dataframe with parameters extracted from the nonparametric fit.
Examples
# 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.gcFitSpline(time, data, gcID = 'TestFit',
control = growth.control(fit.opt = 's'))
summary(TestFit)
[Package QurvE version 1.1.1 Index]