Learn R Programming

insight (version 0.19.11)

get_parameters.gamm: Get model parameters from generalized additive models

Description

Returns the coefficients from a model.

Usage

# S3 method for gamm
get_parameters(
  x,
  component = c("all", "conditional", "smooth_terms", "location"),
  ...
)

# S3 method for gam get_parameters( x, component = c("all", "conditional", "smooth_terms", "location"), ... )

# S3 method for rqss get_parameters(x, component = c("all", "conditional", "smooth_terms"), ...)

Value

For models with smooth terms or zero-inflation component, a data frame with three columns: the parameter names, the related point estimates and the component.

Arguments

x

A fitted model.

component

Should all predictor variables, predictor variables for the conditional model, the zero-inflated part of the model, the dispersion term or the instrumental variables be returned? Applies to models with zero-inflated and/or dispersion formula, or to models with instrumental variable (so called fixed-effects regressions). May be abbreviated. Note that the conditional component is also called count or mean component, depending on the model.

...

Currently not used.

Examples

Run this code
data(mtcars)
m <- lm(mpg ~ wt + cyl + vs, data = mtcars)
get_parameters(m)

Run the code above in your browser using DataLab