From 06f475408706c8d93305da0f1750c593a7416e47 Mon Sep 17 00:00:00 2001 From: Benedikt Bastin Date: Sat, 20 Mar 2021 12:24:58 +0100 Subject: [PATCH] fix: Broken parsing due to new line about federal vaccinations --- plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plot.py b/plot.py index 420f9a0..836c7b4 100644 --- a/plot.py +++ b/plot.py @@ -61,7 +61,7 @@ raw_data = rki_file['Impfungen_proTag'] impfungen = raw_data[:-1].dropna(subset=['Datum'])#.fillna(0) -impfungen.drop(impfungen.tail(1).index,inplace=True) # remove Gesamt row +impfungen.drop(impfungen.tail(3).index,inplace=True) # remove Gesamt row dates = impfungen['Datum']