Spaces:
Runtime error
Runtime error
Commit ·
9c4faf8
1
Parent(s): afd4840
Update app.py
Browse files
app.py
CHANGED
|
@@ -74,18 +74,4 @@ if uploaded_file is not None:
|
|
| 74 |
yaxis_title=series,
|
| 75 |
title=f'Forecasting {series}'
|
| 76 |
)
|
| 77 |
-
st.plotly_chart(fig_forecast)
|
| 78 |
-
|
| 79 |
-
# fig.add_scatter(x=forecasts['ds'], y=forecasts[f'auto_arima_season_length-{seasonality}_mean'], mode='lines')
|
| 80 |
-
# fig.update_traces(
|
| 81 |
-
# name=f'auto_arima_season_length-{seasonality}_mean',
|
| 82 |
-
# line=dict(color='green', width=1),
|
| 83 |
-
# showlegend=True
|
| 84 |
-
# )
|
| 85 |
-
# fig.add_scatter(x=forecasts['ds'], y=forecasts[f'seasonal_naive_season_length-{seasonality}'], mode='lines')
|
| 86 |
-
# fig.update_traces(
|
| 87 |
-
# name=f'seasonal_naive_season_length-{seasonality}',
|
| 88 |
-
# line=dict(color='red', width=1),
|
| 89 |
-
# showlegend=True
|
| 90 |
-
# )
|
| 91 |
-
# st.plotly_chart(fig)
|
|
|
|
| 74 |
yaxis_title=series,
|
| 75 |
title=f'Forecasting {series}'
|
| 76 |
)
|
| 77 |
+
st.plotly_chart(fig_forecast)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|