Fetching Data and Our Assumptions
Getting financial data and our assumptions about that data.
We'll cover the following...
Get financial data from World Bank
The financial data we’re using here comes from the World Bank data and presents per capita gross domestic product numbers from 2019.
Press + to interact
import pandas as pdimport numpy as npimport matplotlib as pltimport matplotlib.pyplot as pltgdp = pd.read_csv('WorldBank_PerCapita_GDP.csv')print (gdp)
Get health data from GHD
The health data we got from the GHD Results ...