X-Git-Url: https://git.njae.me.uk/?p=covid19.git;a=blobdiff_plain;f=covid.md;fp=covid.md;h=318cd5d6f044f989c7d1073176c6bb869653adf6;hp=0dcc3539f91d5996dc67b8c109c78a2af3201f69;hb=d66cfbd98d228749d035d898d3fffac9a781de9f;hpb=a596078977bfdf8b1929a5e288cc70f745101f9d

diff --git a/covid.md b/covid.md
index 0dcc353..318cd5d 100644
--- 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