Logistic regression with glm()
Linear regression and logistic regression are special cases of a broader type of models called generalized linear models ("GLMs"). A linear regression makes the assumption that the residuals follow a Gaussian (normal) distribution. By contrast, a logistic regression assumes that residuals follow a binomial distribution.
Here, you'll model how the length of relationship with a customer affects churn.
churn
is available.
Diese Übung ist Teil des Kurses
Introduction to Regression in R
Anleitung zur Übung
- Fit a logistic regression of
has_churned
versustime_since_first_purchase
using thechurn
dataset. Assign tomdl_churn_vs_relationship
.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Fit a logistic regression of churn vs. length of relationship using the churn dataset
mdl_churn_vs_relationship <- ___
# See the result
mdl_churn_vs_relationship