smooth_coefs: Coefficients for a particular smooth

smooth_coefsR 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, term, ...)

## S3 method for class 'bam'
smooth_coefs(object, term, ...)

## S3 method for class 'gamm'
smooth_coefs(object, term, ...)

## S3 method for class 'gamm4'
smooth_coefs(object, term, ...)

## S3 method for class 'list'
smooth_coefs(object, term, ...)

## S3 method for class 'mgcv.smooth'
smooth_coefs(object, model, ...)

## S3 method for class 'scam'
smooth_coefs(object, term, ...)

Arguments

object

a fitted GAM(M) object, or, for the "mgcv.smooth" method, an object that inherits from class mgcv.smooth.

...

arguments passed to other methods.

term

character; the label of the smooth whose coefficients will be returned.

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, term = "s(x2)")
## IGNORE_RDIFF_END


gratia documentation built on Feb. 16, 2023, 10:40 p.m.