Probabilities
There are four main ways of expressing the prediction from a logistic regression model – we'll look at each of them over the next four exercises. Firstly, since the response variable is either "yes" or "no", you can make a prediction of the probability of a "yes". Here, you'll calculate and visualize these probabilities.
Two variables are available:
mdl_churn_vs_relationshipis the fitted logistic regression model ofhas_churnedversustime_since_first_purchase.explanatory_datais a DataFrame of explanatory values.
Deze oefening maakt deel uit van de cursus
Introduction to Regression with statsmodels in Python
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
# Create prediction_data
prediction_data = explanatory_data.assign(
____
)
# Print the head
print(____)