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']