Hey! Please see below links for my Life Expectancy and GDP Project. Any feedback would be appreciated!
Thanks!
- Difficulty Level: Easy
- Time Taken to Complete: 4 hours
- Link to Code Repo
- Link to Blog Post
Hey! Please see below links for my Life Expectancy and GDP Project. Any feedback would be appreciated!
Thanks!
Congrats on completing the project.
The link that you provided for the notebook asks people to open it in Colab. (not everyone has that on their Google Drive). So, it might be easier for people to view if you pushed the notebook to a GitHub repo and then just supply the GH link for people to follow. You can do that while in the Colab notebook under the File > Save a copy in GH.
Also, the way that it is now, one cannot see the output of the plots b/c the csv file is linked via your computer. If you have a GH repo already set up for the project, you can upload the csv file to the GH repo. Then import it into your notebook from there like so:
once the csv is in a repo, go to view it as “raw”
copy the address in the search bar.
go back to your notebook and use this bit of code to import the csv file to your notebook
df = pd.read_csv("paste the csv address here.csv")
Now the file is in your notebook.
You can upload files to GH that are under 25MB.
Thanks for the suggestions!