Pollution models with multi-scale interactions
The meuse dataset contains some predictor variables that are on the same scale (x, y), and some that are on different scales (elev, dist, om). In a previous exercise, you fit a model where you predicted cadmium pollution as a function of location and elevation:
mod <- gam(cadmium ~ s(x, y) + s(elev),
data = meuse, method = "REML")
In this exercise, you'll build a model that allows multiple variables to interact despite these different scales using a tensor smooth, te().
Este ejercicio forma parte del curso
Nonlinear Modeling with Generalized Additive Models (GAMs) in R
Instrucciones del ejercicio
- Convert this to a model where
x,y, andelevall interact in a singlete()term, varying on their own scales. - Then summarize the model and visualize it with
plot().
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Fit the model
tensor_mod <- ___
# Summarize and plot
___
___