Instruction for submitting the final project files
You must upload two files to canvas: one pdf and one zip file. Do not include the pdf in the zip file. Keep them separate.
-
The project report as a pdf. Do not forget to include the names of your group members in the report.
-
The code and data in a zip file
- The code and data should be in one folder that you zip to create a single zip file.
- Before you zip your code, make sure that there are no absolute file paths. If your code is in a folder on your computer named 'project' and the data file you want to read in is in a folder named 'data', your code should not have paths such as
C:\Users\kimru\Dropbox\project\data\file.csv
. All the paths should be relative to the folder your notebook is in, such asdata\file.csv
.