Test your knowledge
Now that you have completed the recipes in this chapter, follow the steps shown here to exercise what you have learned. You will do this by adapting one of the notebooks you worked through in this chapter so that it works with a new dataset.
Getting ready
Follow these steps to upload a new tabular dataset:
- Go to the site for the Kaggle competition on future sales prediction (https://www.kaggle.com/c/competitive-data-science-predict-future-sales/data) and accept the conditions for the competition to get access to the datasets associated with the competition.
- Download the
sales_train.csv.zip
andtest.csv.zip
files. - Unzip the downloaded files to extract
sales_train.csv
andtest.csv
. - From the Terminal in your Gradient environment, make your current directory
/storage/archive
:cd /storage/archive
- Create a folder called
/storage/archive/price_prediction
:mkdir price_prediction
- Upload
sales_train.csv
andtest.csv
to/storage/archive/price_prediction...