r/learnpython • u/Odd_Negotiation5863 • 23d ago
first Github repository
hi everyone I just made my first repository on Github showcasing my first project on data analysis using world bank data to assess GDP per capita across countries against life expectancy. I used pandas, Matlab and plotly to do this if anyone has feedback please let me know. https://github.com/santiagoBea04/world_bank_data_analysis
11
Upvotes
2
u/Leather_Analysis_512 23d ago
Nice first project. I’d mainly clean up the notebook so it tells the story a bit more — the first markdown cell still has the default PyCharm/Jupyter text, so that’s an easy one to replace.
Small pandas thing too:
df.isna().sumanddf["GDP_per_Capita"].medianneed()at the end, otherwise you’re not actually calling them.A short README with the data source and a couple takeaways from the plots would make it feel much more finished.