diff --git a/plot.py b/plot.py index 09ea1cf..98526fc 100644 --- a/plot.py +++ b/plot.py @@ -49,6 +49,8 @@ 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 + dates = impfungen['Datum'] start_of_reporting_date = dates.iloc[0].date()