This is the repository for Year 3 TBPS 2022 team 6
To avoid changing the path for data files each time we sync the python code, we can place them in the same folder so that the following works
import os
file_name = 'signal.pkl'
content = pd.read_pickle(os.getcwd() + f'\year3-problem-solving' + f'\{file_name}')
content.head()
where year3-problem-solving is the file from Mitesh, downloaded from here.
By the same folder, I mean this:
Note: you'll need to change your working directory to the folder containing your Python/datasets. Otherwise, your "run" will work but the console might not. I used Pycharm for IDE.
