smooth_coefs {gratia} | R Documentation |
Coefficients for a particular smooth
Description
Returns a vector of model coefficients of the parametric terms that represent the supplied smooth.
Usage
smooth_coefs(object, ...)
## S3 method for class 'gam'
smooth_coefs(object, select, term = deprecated(), ...)
## S3 method for class 'bam'
smooth_coefs(object, select, term = deprecated(), ...)
## S3 method for class 'gamm'
smooth_coefs(object, select, term = deprecated(), ...)
## S3 method for class 'gamm4'
smooth_coefs(object, select, term = deprecated(), ...)
## S3 method for class 'list'
smooth_coefs(object, select, term = deprecated(), ...)
## S3 method for class 'mgcv.smooth'
smooth_coefs(object, model, ...)
## S3 method for class 'scam'
smooth_coefs(object, select, term = deprecated(), ...)
Arguments
object |
a fitted GAM(M) object, or, for the |
... |
arguments passed to other methods. |
select |
character; the label of the smooth whose coefficients will be returned. |
term |
|
model |
a fitted GAM(M) object. |
Value
A numeric vector of model coefficients.
Author(s)
Gavin L. Simpson
See Also
smooth_coef_indices()
for extracting the indices of the
coefficients for a particular smooth.
Examples
load_mgcv()
df <- data_sim("eg1", seed = 2)
m <- gam(y ~ s(x0) + s(x1) + s(x2) + s(x3), data = df, method = "REML")
## IGNORE_RDIFF_BEGIN
smooth_coefs(m, select = "s(x2)")
## IGNORE_RDIFF_END
[Package gratia version 0.9.2 Index]