1
0
Fork 0

fix: RKI removed zeros again, breaking start of second vaccination date calculation

This commit is contained in:
Benedikt Bastin 2021-04-14 10:56:17 +02:00
parent c144daaf0b
commit c1f4b57bc0
1 changed files with 1 additions and 1 deletions

View File

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