Generic summary function for gcFitSpline objects
Source:R/growth_summaries.R
summary.gcFitSpline.Rd
Generic summary function for gcFitSpline objects
Usage
# S3 method for gcFitSpline
summary(object, ...)
Arguments
- object
object of class
gcFitSpline
- ...
Additional arguments. This has currently no effect and is only meant to fulfill the requirements of a generic function.
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)
#> mu.spline tD.spline tmax.spline lambda.spline mu2.spline
#> 1 0.660877694252412 1.04882822735308 7.75 4.07862738259685 <NA>
#> tD2.spline tmax2.spline lambda2.spline y0.spline A.spline
#> 1 <NA> <NA> <NA> 0.0489000910445174 5.52407519603878
#> dY.spline integral.spline reliable_fit.spline reliable_fit2.spline
#> 1 5.47517510499426 76.8933425436482 TRUE FALSE
#> smooth.spline
#> 1 0.55