fix: RKI removed zeros again, breaking start of second vaccination date calculation
This commit is contained in:
parent
c144daaf0b
commit
c1f4b57bc0
1 changed files with 1 additions and 1 deletions
2
plot.py
2
plot.py
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue