add markers

This commit is contained in:
fordprefect
2020-03-21 21:00:31 +01:00
parent 353a77d1dd
commit dc7c2e1264
2 changed files with 6 additions and 6 deletions

View File

@@ -13,10 +13,10 @@ def plot(data, countries):
# death/case
pp.figure(name)
pp.plot(time, np.array(total_deaths)/np.array(total_cases), label=f"{loc}")
pp.plot(time, np.array(total_deaths)/np.array(total_cases), label=f"{loc}", marker=".")
pp.yscale("log")
pp.xticks(rotation=90)
pp.xticks(rotation=45)
pp.legend(frameon=False)
pp.tight_layout()