From d8f28c9f3f7b51639a0ae1a4867bb34116e9ca5e Mon Sep 17 00:00:00 2001 From: Benedikt Bastin Date: Thu, 8 Apr 2021 18:52:27 +0200 Subject: [PATCH] fix: RKI changed the format again --- plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plot.py b/plot.py index 70fc909..b8556c5 100644 --- a/plot.py +++ b/plot.py @@ -66,7 +66,7 @@ raw_data = rki_file['Impfungen_proTag'] impfungen = raw_data[:-1].dropna(subset=['Datum'])#.fillna(0) -impfungen.drop(impfungen.tail(4).index,inplace=True) # remove Gesamt row +impfungen.drop(impfungen.tail(1).index,inplace=True) # remove Gesamt row dates = impfungen['Datum']