MulaiMulai sekarang secara gratis

Prepare a submission

You've already built a model on the training data from the Kaggle Store Item Demand Forecasting Challenge. Now, it's time to make predictions on the test data and create a submission file in the specified format.

Your goal is to read the test data, make predictions, and save these in the format specified in the "sample_submission.csv" file. The rf object you created in the previous exercise is available in your workspace.

Note that starting from now and for the rest of the course, pandas library will be always imported for you and could be accessed as pd.

Latihan ini adalah bagian dari kursus

Winning a Kaggle Competition in Python

Lihat Kursus

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Read test and sample submission data
test = ____.____(____)
sample_submission = ____.____(____)

# Show the head() of the sample_submission
print(____.____)
Edit dan Jalankan Kode