Update app.py
Browse files
app.py
CHANGED
@@ -174,7 +174,18 @@ def forecast_chronos_data(df_state, date_column, target_column, select_period, f
|
|
174 |
y=high,
|
175 |
name="80% Prediction Interval",
|
176 |
mode='lines',
|
177 |
-
line=dict(width=0),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
showlegend=False
|
179 |
)
|
180 |
)
|
|
|
174 |
y=high,
|
175 |
name="80% Prediction Interval",
|
176 |
mode='lines',
|
177 |
+
line=dict(width=1, color='rgba(0,176,246,0.2)'),
|
178 |
+
showlegend=False
|
179 |
+
)
|
180 |
+
)
|
181 |
+
|
182 |
+
fig.add_trace(
|
183 |
+
go.Scatter(
|
184 |
+
x=forecast_index,
|
185 |
+
y=low,
|
186 |
+
name="10% Prediction Interval",
|
187 |
+
mode='lines',
|
188 |
+
line=dict(width=1, color='rgba(0,176,246,0.2)'),
|
189 |
showlegend=False
|
190 |
)
|
191 |
)
|