Category-level smooths for different auto types
Now you extend your models to include different smooths for different levels of categorical terms.
Latihan ini adalah bagian dari kursus
Nonlinear Modeling with Generalized Additive Models (GAMs) in R
Petunjuk latihan
- Fit a model to predict city fuel efficiency (
city.mpg) with smooth terms ofweight,length, andprice, but make each of these smooth terms depend on thedrivecategorical variable usingby=in the smooth terms. - Include a separate linear term for the
drivevariable.
Latihan interaktif praktis
Cobalah latihan ini dengan menyelesaikan kode contoh berikut.
library(mgcv)
# Fit the model
mod_city3 <- gam(city.mpg ~ ___,
data = mpg, method = "REML")
# Plot the model
plot(mod_city3, pages = 1)