Spaces:
Running
Running
Circhastic
commited on
Commit
•
60d1a78
1
Parent(s):
0ffc81e
First version hotfix #4
Browse files
app.py
CHANGED
@@ -340,7 +340,7 @@ if (st.session_state.uploaded):
|
|
340 |
col = st.columns(2)
|
341 |
with col[0]:
|
342 |
col[0].header("Sales Forecast")
|
343 |
-
merged_data = merge_forecast_data(df['
|
344 |
col[0].line_chart(merged_data)
|
345 |
with col[1]:
|
346 |
col[1].subheader("Forecasted sales in x days")
|
|
|
340 |
col = st.columns(2)
|
341 |
with col[0]:
|
342 |
col[0].header("Sales Forecast")
|
343 |
+
merged_data = merge_forecast_data(df['Sales'], fitted_series, future_fitted_series)
|
344 |
col[0].line_chart(merged_data)
|
345 |
with col[1]:
|
346 |
col[1].subheader("Forecasted sales in x days")
|