CommencerCommencer gratuitement

Calculating snapshot targets

Assume you want to predict who will make large donations, i.e. 500 Euro or more, in January 2019. As January is a very specific month, it is better to only use January snapshots. In order to obtain enough data, you want to include two snapshots, namely January 2018 and January 2017. In this exercise you will learn how to calculate the target values for these different snapshots.

Cet exercice fait partie du cours

Intermediate Predictive Analytics in Python

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Sum of donations for each donor
gifts_summed_january_2017 = gifts_january_2017.groupby("____")["____"].____().reset_index()
gifts_summed_january_2018 = gifts_january_2018.groupby("____")["____"].____().reset_index()
Modifier et exécuter le code