Files
coronavis/normalized_to_first_death.py
fordprefect 45f9b7d716 also markers
2020-03-21 21:01:01 +01:00

25 lines
698 B
Python

"""
Plot total cases timeshiftet to first death
"""
import matplotlib.pyplot as pp
import numpy as np
name="normalized_to_first_death"
def plot(data, countries):
for loc in data:
if loc not in countries:
continue
time, new_cases, new_deaths, total_cases, total_deaths = data[loc]
pp.figure(name)
day_of_first_death = np.argwhere(np.array(total_deaths) > 0)[0][0]
new_time_axis = np.arange(len(time)) - day_of_first_death
pp.plot(new_time_axis, np.array(total_cases), label=f"{loc}", marker=".")
pp.yscale("log")
pp.xticks(rotation=45)
pp.legend(frameon=False)
pp.tight_layout()
pp.savefig(name+".png")