1
0
Fork 0

fix: Fixed parsing of new data files

This commit is contained in:
Benedikt Bastin 2021-04-01 18:25:35 +02:00
parent 4b828cdad9
commit a901fd5c53

View file

@ -66,7 +66,7 @@ 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(3).index,inplace=True) # remove Gesamt row impfungen.drop(impfungen.tail(4).index,inplace=True) # remove Gesamt row
dates = impfungen['Datum'] dates = impfungen['Datum']