various changes: fix lower axis value for all_countries, add population for each country from WikiData, fix data_getter for changed data format (added columns)
This commit is contained in:
@@ -8,7 +8,7 @@ name="percent_increase"
|
||||
def moving_average(x, w):
|
||||
return np.convolve(x, np.ones(w), 'valid') / w
|
||||
|
||||
def plot(data, countries):
|
||||
def plot(data, countries, pop):
|
||||
figsize = (10,5)
|
||||
for loc in data:
|
||||
if loc not in countries:
|
||||
|
||||
Reference in New Issue
Block a user