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?
Este exercício faz parte do curso
Nonlinear Modeling with Generalized Additive Models (GAMs) in R
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
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
___