Skip to content

Commit db5624c

Browse files
committed
removed lingering comments in ETS notebook
1 parent cb59c80 commit db5624c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

notebooks/Exponential Trend Smoothing.ipynb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@
478478
},
479479
{
480480
"cell_type": "code",
481-
"execution_count": 35,
481+
"execution_count": null,
482482
"id": "2cef7cb7",
483483
"metadata": {},
484484
"outputs": [],
@@ -518,7 +518,6 @@
518518
" forecast_dist = idata_forecast.forecast_observed.isel(observed_state=0, time=slice(1, None))\n",
519519
" mu_forecast = forecast_dist.mean(dim=[\"chain\", \"draw\"])\n",
520520
" hdi_forecast = az.hdi(forecast_dist).forecast_observed\n",
521-
" # I think here you want to use the forecast index instead due to missing value imputation\n",
522521
" price_ax.plot(idata_forecast.indexes[\"time\"][1:], mu_forecast.values, label=\"Test Forecast\")\n",
523522
" price_ax.fill_between(\n",
524523
" idata_forecast.indexes[\"time\"][1:],\n",
@@ -3188,7 +3187,6 @@
31883187
"vol_hat = np.exp(log_vol_hat)\n",
31893188
"\n",
31903189
"vol_hdi = az.hdi(vol_hat).forecast_observed\n",
3191-
"# Again here I had to change the x values to the forecast time index\n",
31923190
"vol_ax.plot(idata_joint_forecast.indexes[\"time\"], vol_hat.mean(dim=[\"chain\", \"draw\"]))\n",
31933191
"vol_ax.fill_between(idata_joint_forecast.indexes[\"time\"], *vol_hdi.values.T, alpha=0.25)"
31943192
]

0 commit comments

Comments
 (0)