Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -187,7 +187,7 @@ else:
|
|
187 |
|
188 |
fig.update_layout(xaxis_title="Date", yaxis_title="Price [EUR/MWh]")
|
189 |
st.plotly_chart(fig, use_container_width=True)
|
190 |
-
st.write("The graph presented here illustrates the day-ahead electricity price forecasts for Belgium, covering the period from one week ago up to tomorrow.
|
191 |
|
192 |
|
193 |
if not selected_variables:
|
@@ -230,7 +230,7 @@ else:
|
|
230 |
if start_date_pred and end_date_pred:
|
231 |
st.header("Accuracy Metrics")
|
232 |
#st.write(f"The accuracy metrics are calculated from {start_date_pred} to {end_date_pred}, this intervale can be changed in the sidebar.")
|
233 |
-
st.write(f"The accuracy metrics are calculated from **{start_date_pred}** to **{end_date_pred}**. This interval can be changed in the sidebar.
|
234 |
filtered_df = df_filtered[(df_filtered['Date'] >= pd.Timestamp(start_date_pred)) & (df_filtered['Date'] <= pd.Timestamp(end_date_pred))]
|
235 |
|
236 |
# List of models for convenience
|
|
|
187 |
|
188 |
fig.update_layout(xaxis_title="Date", yaxis_title="Price [EUR/MWh]")
|
189 |
st.plotly_chart(fig, use_container_width=True)
|
190 |
+
st.write("The graph presented here illustrates the day-ahead electricity price forecasts for Belgium, covering the period from one week ago up to tomorrow.")
|
191 |
|
192 |
|
193 |
if not selected_variables:
|
|
|
230 |
if start_date_pred and end_date_pred:
|
231 |
st.header("Accuracy Metrics")
|
232 |
#st.write(f"The accuracy metrics are calculated from {start_date_pred} to {end_date_pred}, this intervale can be changed in the sidebar.")
|
233 |
+
st.write(f"The accuracy metrics are calculated from **{start_date_pred}** to **{end_date_pred}**. This interval can be changed in the sidebar.")
|
234 |
filtered_df = df_filtered[(df_filtered['Date'] >= pd.Timestamp(start_date_pred)) & (df_filtered['Date'] <= pd.Timestamp(end_date_pred))]
|
235 |
|
236 |
# List of models for convenience
|