Spaces:
Running
Running
Commit
·
aaacc29
1
Parent(s):
a5adff6
Update app
Browse files- .streamlit/config.toml +2 -2
- app.py +1 -1
.streamlit/config.toml
CHANGED
|
@@ -3,10 +3,10 @@
|
|
| 3 |
primaryColor = '#0091D5'
|
| 4 |
|
| 5 |
# Background color for the main content area
|
| 6 |
-
backgroundColor = '#
|
| 7 |
|
| 8 |
# Background color for sidebar and most interactive widgets
|
| 9 |
-
secondaryBackgroundColor = '#
|
| 10 |
|
| 11 |
# Color used for almost all text
|
| 12 |
textColor = '#000000'
|
|
|
|
| 3 |
primaryColor = '#0091D5'
|
| 4 |
|
| 5 |
# Background color for the main content area
|
| 6 |
+
backgroundColor = '#F1F1F1'
|
| 7 |
|
| 8 |
# Background color for sidebar and most interactive widgets
|
| 9 |
+
secondaryBackgroundColor = '#e1e0ff'
|
| 10 |
|
| 11 |
# Color used for almost all text
|
| 12 |
textColor = '#000000'
|
app.py
CHANGED
|
@@ -288,7 +288,7 @@ if (st.session_state.uploaded):
|
|
| 288 |
lower_series = pd.Series(confint[:, 0], index=index_of_fc)
|
| 289 |
upper_series = pd.Series(confint[:, 1], index=index_of_fc)
|
| 290 |
|
| 291 |
-
#TODO Plot Test and Training
|
| 292 |
col1, col2 = st.columns(2)
|
| 293 |
with col1:
|
| 294 |
col1.header("Sales Forecast")
|
|
|
|
| 288 |
lower_series = pd.Series(confint[:, 0], index=index_of_fc)
|
| 289 |
upper_series = pd.Series(confint[:, 1], index=index_of_fc)
|
| 290 |
|
| 291 |
+
# TODO Plot Test and Training
|
| 292 |
col1, col2 = st.columns(2)
|
| 293 |
with col1:
|
| 294 |
col1.header("Sales Forecast")
|