Get startedGet started for free

Category-level smooths for different auto types

Now you extend your models to include different smooths for different levels of categorical terms.

This exercise is part of the course

Nonlinear Modeling with Generalized Additive Models (GAMs) in R

View Course

Exercise instructions

  • Fit a model to predict city fuel efficiency (city.mpg) with smooth terms of weight, length, and price, but make each of these smooth terms depend on the drive categorical variable using by= in the smooth terms.
  • Include a separate linear term for the drive variable.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

library(mgcv)
# Fit the model
mod_city3 <- gam(city.mpg ~ ___, 
                 data = mpg, method = "REML")

# Plot the model
plot(mod_city3, pages = 1)
Edit and Run Code