1
0
Fork 0

fix: Broken parsing due to new line about federal vaccinations

This commit is contained in:
Benedikt Bastin 2021-03-20 12:24:58 +01:00
parent e461a372f9
commit 06f4754087
1 changed files with 1 additions and 1 deletions

View File

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