ComenzarEmpieza gratis

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 ejercicio forma parte del curso

Nonlinear Modeling with Generalized Additive Models (GAMs) in R

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

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
___
Editar y ejecutar código