1. Learn
  2. /
  3. Courses
  4. /
  5. Winning a Kaggle Competition in Python

Exercise

Explore test data

Having looked at the train data, let's explore the test data in the "Store Item Demand Forecasting Challenge". Remember, that the test dataset generally contains one column less than the train one.

This column, together with the output format, is presented in the sample submission file. Before making any progress in the competition, you should get familiar with the expected output.

That is why, let's look at the columns of the test dataset and compare it to the train columns. Additionally, let's explore the format of the sample submission. The train DataFrame is available in your workspace.

Instructions 1/2

undefined XP
    1
    2
  • Read the test dataset.
  • Print the column names of the train and test datasets.