vaclavdekanovsky / data-analysis-in-examples

Set of notebooks complementing medium.com articles
https://medium.com/@vdekanovsky
109 stars 96 forks source link

Country_Codes.csv and Metadata.csv #3

Open Manolo1182 opened 3 years ago

Manolo1182 commented 3 years ago

Hi, These examples are very useful, thank you. But for clarity purposes, could you please explain what files are you using as country_codes.csv and Metadata.csv.

Thanks

vaclavdekanovsky commented 3 years ago

Hello. Thank you for the note, I've updated the description in the Vizualizations/Plotly/Preprocess/Preprocessing.ipynb

    # load country_codes (from https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes)
    country_codes = pd.read_csv("Country_Codes.csv")

    # info about regions (part of the world bank data package)
    regions = pd.read_csv("Metadata.csv")

I've also added the links to the original world bank data.