Search⌘ K

Fetching Data and Our Assumptions

Explore how to retrieve financial data from the World Bank and health data from the Global Health Data Exchange. Learn to analyze the relationship between economic status and mental illness prevalence while applying assumptions about environmental and organic factors. This lesson builds your skills in data fetching, preprocessing, and preliminary analysis using Python in a Jupyter environment.

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.

Python 3.5
import pandas as pd
import numpy as np
import matplotlib as plt
import matplotlib.pyplot as plt
gdp = pd.read_csv('WorldBank_PerCapita_GDP.csv')
print (gdp)

Get health data from GHD

The health data we got from the GHD Results ...