Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -247,7 +247,7 @@ if section == 'Data Quality':
|
|
247 |
|
248 |
st.write('The table below presents the data quality metrics focusing on the percentage of missing values and the occurrence of extreme or nonsensical values for the selected country.')
|
249 |
|
250 |
-
yesterday_midnight = pd.Timestamp(datetime.
|
251 |
|
252 |
# Filter data until the end of yesterday (midnight)
|
253 |
data_quality = data[data.index <= yesterday_midnight]
|
|
|
247 |
|
248 |
st.write('The table below presents the data quality metrics focusing on the percentage of missing values and the occurrence of extreme or nonsensical values for the selected country.')
|
249 |
|
250 |
+
yesterday_midnight = pd.Timestamp(datetime.now().date() - pd.Timedelta(days=1)).replace(hour=23, minute=59, second=59)
|
251 |
|
252 |
# Filter data until the end of yesterday (midnight)
|
253 |
data_quality = data[data.index <= yesterday_midnight]
|