variance_comp {gratia} | R Documentation |
Variance components of smooths from smoothness estimates
Description
A wrapper to mgcv::gam.vcomp()
which returns the smoothing parameters
expressed as variance components.
Usage
variance_comp(object, ...)
## S3 method for class 'gam'
variance_comp(object, rescale = TRUE, coverage = 0.95, ...)
Arguments
object |
an R object. Currently only models fitted by |
... |
arguments passed to other methods |
rescale |
logical; for numerical stability reasons the penalty matrices
of smooths are rescaled before fitting. If |
coverage |
numeric; a value between 0 and 1 indicating the (approximate) coverage of the confidence interval that is returned. |
Details
This function is a wrapper to mgcv::gam.vcomp()
which performs
three additional services
it suppresses the annoying text output that
mgcv::gam.vcomp()
prints to the terminal,returns the variance of each smooth as well as the standard deviation, and
returns the variance components as a tibble.