Aan de slagGa gratis aan de slag

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_relationship is the fitted logistic regression model of has_churned versus time_since_first_purchase.
  • explanatory_data is a DataFrame of explanatory values.

Deze oefening maakt deel uit van de cursus

Introduction to Regression with statsmodels in Python

Cursus bekijken

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(____)
Code bewerken en uitvoeren