Tweaked death data and graph
[covid19.git] / uk_deaths.md
index fc81099b48100abe68678537b9fe45005e66aaf4..76ca621b134af706405f3554c785d3718b2ddcd4 100644 (file)
@@ -283,6 +283,7 @@ deaths_headlines_s = raw_data_s[reversed('2015 2016 2017 2018 2019 2020'.split()
 deaths_headlines_s.columns = ['total_' + c for c in deaths_headlines_s.columns]
 deaths_headlines_s.reset_index(drop=True, inplace=True)
 deaths_headlines_s.index = deaths_headlines_s.index + 1
+deaths_headlines_s = deaths_headlines_s.loc[1:52]
 deaths_headlines_s
 ```
 
@@ -320,6 +321,7 @@ deaths_headlines['total_2020 total_2019 total_2018 total_2017 total_2016 total_2
 ```
 
 ```python
+Radar plot code taken f
 fig = plt.figure(figsize=(10, 10))
 ax = fig.add_subplot(111, projection="polar")