Can someone suggest how to get the imported python files and csv files used in lesson 3?
-
standalone_tools.py
-
../resources/climate_data/temperature_annual.csv
Thanks,
Syed Hussain
Can someone suggest how to get the imported python files and csv files used in lesson 3?
standalone_tools.py
../resources/climate_data/temperature_annual.csv
Thanks,
Syed Hussain
Perhaps you can find them by using the “File” menu, and then the “Open” tool. It’s worth a try.
Thanks for pointing out. Although it is tedious but the directories are accesssible. I could download after running tar command through notebook.
This course looks useful for real projects
Getting the right files is important for learning
Hopefully the website shares them clearly
Just open the File menu, everything should be there.
Hello @Syed_Hussain2 !
For ../resources/climate_data/temperature_annual.csv
please, go to the top menu File > Open
From the files browser in L3, go to …
you will find the resources folder
and once you click in that folder “resources” you can navigate to find the csv file, you asked!
To add on to Lesly’s answer: When you see sys.path.append('standalone_tools'), this line is telling Python to look in the standalone_tools folder for code to import.
File location: L3/standalone_tools/climate_tools_simple.py
This is where the related functions used in the notebook are defined.