MulaiMulai sekarang secara gratis

Classifying purchasing behavior

Let's fit some GAMs to the csale data, which has the binary purchase outcome variable.

After you fit the model, answer the following question:

What does the log_mod model estimate the probability of a person making a purchase who has mean values of all variables?

Latihan ini adalah bagian dari kursus

Nonlinear Modeling with Generalized Additive Models (GAMs) in R

Lihat Kursus

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Examine the csale data frame
head(csale)
str(csale)

# Fit a logistic model
log_mod <- gam(___, data = csale, 
               ___, 
               method = "REML")
Edit dan Jalankan Kode