Get startedGet started for free

Many-to-many joins

Your team is excited to watch some game films and get a better idea of plays resulting in concussions. First you want to get the jersey numbers of players involved in the critical plays. You have data similar to the two tables below.
playas

A coworker has already joined the tables with Pandas and saved the result to players_joined.csv.

This exercise is part of the course

Pandas Joins for Spreadsheet Users

View Course

Hands-on interactive exercise

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

# Create data frame for players_joined and view
____ = pd.____(____)
print(____)
Edit and Run Code