Joining on index
Your team has decided to take advantage of multi-level indexes for data frames. A colleague has reloaded the game_matchups
and punts
data frames. This time, each data frame has its key column(s) as the index.
You want to rejoin the data frames by index and compare the percentage of punts by quarter for 2016 and 2017.
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.
# View first 10 rows of each data frame
print(____.____(10), '\n', ____.head(____))