From c1f4b57bc0657843b42a7cd318c92751307f77f6 Mon Sep 17 00:00:00 2001 From: Benedikt Bastin Date: Wed, 14 Apr 2021 10:56:17 +0200 Subject: [PATCH] fix: RKI removed zeros again, breaking start of second vaccination date calculation --- plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plot.py b/plot.py index 0bc05fb..6a85b49 100644 --- a/plot.py +++ b/plot.py @@ -64,7 +64,7 @@ rki_file = pd.read_excel(data_filename, sheet_name=None, engine='openpyxl') raw_data = rki_file['Impfungen_proTag'] -impfungen = raw_data[:-1].dropna(subset=['Datum'])#.fillna(0) +impfungen = raw_data[:-1].dropna(subset=['Datum']).fillna(0) impfungen.drop(impfungen.tail(1).index,inplace=True) # remove Gesamt row