Tweaked graph output
[covid19.git] / covid.md
index 0dcc3539f91d5996dc67b8c109c78a2af3201f69..318cd5d6f044f989c7d1073176c6bb869653adf6 100644 (file)
--- a/covid.md
+++ b/covid.md
@@ -233,7 +233,7 @@ ax = deaths[COUNTRIES_CORE].plot(figsize=(10, 6), title="Total deaths, linear")
 for c in COUNTRIES_CORE:
     lvi = deaths[c].last_valid_index()
     ax.text(x = lvi + 1, y = deaths[c][lvi], s = c)
-plt.savefig('covid_deaths_total_linear.png')    
+plt.savefig('covid_deaths_total_linear.png')    
 ```
 
 ```python
@@ -249,7 +249,7 @@ ax = deaths[COUNTRIES_OF_INTEREST].plot(figsize=(10, 6), title="Total deaths, li
 for c in COUNTRIES_OF_INTEREST:
     lvi = deaths[c].last_valid_index()
     ax.text(x = lvi + 1, y = deaths[c][lvi], s = c)
-plt.savefig('covid_deaths_total_linear.png') 
+plt.savefig('covid_deaths_total_linear.png') 
 ```
 
 ```python