ComeçarComece de graça

Purchase behavior with multiple smooths

In this exercise, you will fit a logistic GAM that predicts the outcome (purchase) in csale, using all other variables as predictors.

After summarizing the model, answer the following question:

Which term in the model is significant but approximately linear?

Este exercício faz parte do curso

Nonlinear Modeling with Generalized Additive Models (GAMs) in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Fit a logistic model
log_mod2 <- gam(___,
                data = csale,
                family = binomial,
                method = "REML")

# View the summary
___
Editar e executar o código