Commit ·
e2c152c
1
Parent(s): b951769
Guardar mis cambios locales
Browse files
app.py
CHANGED
|
@@ -98,4 +98,4 @@ def upload_and_forecast(uploaded_file, period):
|
|
| 98 |
|
| 99 |
future_n_periods = forecast_period
|
| 100 |
future_fitted, confint = train_test_model.predict(X=df.iloc[-future_n_periods:, 1:], n_periods=future_n_periods, return_conf_int=True, freq='3D')
|
| 101 |
-
future_index_of_fc = pd.date_range(df['Sales'].index[-1], periods=future
|
|
|
|
| 98 |
|
| 99 |
future_n_periods = forecast_period
|
| 100 |
future_fitted, confint = train_test_model.predict(X=df.iloc[-future_n_periods:, 1:], n_periods=future_n_periods, return_conf_int=True, freq='3D')
|
| 101 |
+
future_index_of_fc = pd.date_range(df['Sales'].index[-1], periods=future)
|