1. Learn
  2. /
  3. Courses
  4. /
  5. Pandas Joins for Spreadsheet Users

Connected

Exercise

Working with split data

Your team wants to use data from the 2016 and 2017 seasons. The game data is stored in a spreadsheet file with each season on a separate sheet.

Games spreadsheet

This is a perfect chance to start building pandas muscles! You'll use pandas to look at each season of data and see if they can be joined into one data frame. A coworker has already imported the pandas package into the code environment as "pd" and saved each sheet to csv files. The files are called games_2016.csv and games_2017.csv.

Instructions 1/4

undefined XP
    1
    2
    3
    4
  • Load data from games_2016.csv into a data frame called games_2016.