One-to-one joins
Are certain turf types associated with concussions? To answer this question, your team has been asked to include data about where games were played and what type of turf is used. Below is the spreadsheet you created.
You'd like to transition to Pandas and join this data with another dataset describing each game. The datasets are saved to separate csv files, stadiums.csv
and games.csv
.
Este exercício faz parte do curso
Pandas Joins for Spreadsheet Users
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Create data frame for stadiums and view
____ = pd.read_csv(____)
print(____)