Spaces:
Running
Running
Commit ·
ce66866
1
Parent(s): c491fde
Fix app
Browse files
app.py
CHANGED
|
@@ -283,10 +283,10 @@ if (st.session_state.uploaded):
|
|
| 283 |
|
| 284 |
|
| 285 |
# Streamlit plot
|
| 286 |
-
st.title("Forecasted Sales")
|
| 287 |
-
st.line_chart(df['Sales'][-50:])
|
| 288 |
-
st.line_chart(future_fitted_series, use_container_width=True)
|
| 289 |
-
st.area_chart(pd.concat([future_lower_series, future_upper_series], axis=1), color="#808080")
|
| 290 |
|
| 291 |
auto_sales_growth = sales_growth(df, future_fitted_series)
|
| 292 |
df = auto_sales_growth
|
|
|
|
| 283 |
|
| 284 |
|
| 285 |
# Streamlit plot
|
| 286 |
+
# st.title("Forecasted Sales")
|
| 287 |
+
# st.line_chart(df['Sales'][-50:])
|
| 288 |
+
# st.line_chart(future_fitted_series, use_container_width=True)
|
| 289 |
+
# st.area_chart(pd.concat([future_lower_series, future_upper_series], axis=1), color="#808080")
|
| 290 |
|
| 291 |
auto_sales_growth = sales_growth(df, future_fitted_series)
|
| 292 |
df = auto_sales_growth
|