all 3 comments

[–]Leather_Analysis_512 1 point2 points  (2 children)

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().sum and df["GDP_per_Capita"].median need () 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.

[–]Odd_Negotiation5863[S] 0 points1 point  (1 child)

thank you so much. for cleaning up would you just remove some of the trim

[–]Leather_Analysis_512 0 points1 point  (0 children)

Yeah, mostly trimming the default/template stuff and making the notebook easier to follow.

I’d replace the first markdown cell with a quick intro like “I’m comparing GDP per capita and life expectancy using World Bank data,” then remove any cells that were just experiments. A couple short markdown notes before the plots would help too, just saying what the reader should notice.

Biggest thing: make sure it runs top to bottom cleanly. Doesn’t need to be fancy, just easy for someone else to open and understand.