fix: RKI changed text below rows
This commit is contained in:
parent
4b2ebd6dc2
commit
05cc86f6e2
1 changed files with 2 additions and 1 deletions
3
plot.py
3
plot.py
|
@ -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(2).index,inplace=True) # remove Gesamt row
|
impfungen.drop(impfungen.tail(1).index,inplace=True) # remove Gesamt row
|
||||||
|
|
||||||
dates = impfungen['Datum']
|
dates = impfungen['Datum']
|
||||||
|
|
||||||
|
@ -190,6 +190,7 @@ print_stand = stand_date.isoformat()
|
||||||
|
|
||||||
filename_stand = stand_date.strftime("%Y%m%d%H%M%S")
|
filename_stand = stand_date.strftime("%Y%m%d%H%M%S")
|
||||||
|
|
||||||
|
print("Effective {}, last reported date {}", stand, dates.iloc[-1].date())
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue