Object-oriented merges
You recently learned that you can merge data in pandas using object-oriented language. The team took a vote and decided to make it a standard practice to be more consistent with the Python language. This would be a good time to rewrite your recent left merge statement.
Diese Übung ist Teil des Kurses
Pandas Joins for Spreadsheet Users
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Recreate merge statement and view result
thursday_impacts = ____.____(thursdays, impacts, on='GameKey', how='left')
print(thursday_impacts.head())