Get startedGet started for free

Adding living place

Finally, you want to add the living place of the donors to the basetable. The living places of the donors are given in living_places where the living place for each donor is given together with the start and end valid date of that living place. Keep in mind the following timeline that is used to construct the basetable:

This exercise is part of the course

Intermediate Predictive Analytics in Python

View Course

Exercise instructions

  • Fill out the reference date.
  • Create a new pandas dataframe living_places_reference_date that contains the living places of the donors at the reference date.
  • Merge this new dataframe with the basetable.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Reference date
reference_date = datetime.date(____, ____, ____)

# Select living place reference date
living_places_reference_date = living_places[(living_places["____"] <= ____) & 
                                            (living_places["____"] > ____)]

# Add living place to the basetable
basetable = pd.____(____, living_places_reference_date[["____", "____"]], on="donor_ID")
Edit and Run Code