Significance and linearity (I)
It's time for you to summarize a model and interpret the output.
After summarizing the model, you will answer the following question:
Which smooth term in this model is significant and linear?
Cet exercice fait partie du cours
Nonlinear Modeling with Generalized Additive Models (GAMs) in R
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
library(mgcv)
# Fit the model
mod_city4 <- gam(city.mpg ~ s(weight) + s(length) + s(price) + s(rpm) + s(width),
data = mpg, method = "REML")
# View the summary
___