We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9603468 commit 32c311eCopy full SHA for 32c311e
chapter7/Silverkite.ipynb
@@ -157,8 +157,8 @@
157
},
158
"outputs": [],
159
"source": [
160
- "ts = result.forecast\n",
161
- "ts.plot().show(renderer=\"colab\") # leave out the renderer argument if you are not on google colab!"
+ "forecast = result.forecast\n",
+ "forecast.plot().show(renderer=\"colab\") # leave out the renderer argument if you are not on google colab!"
162
]
163
164
{
@@ -192,6 +192,7 @@
192
193
"from collections import defaultdict\n",
194
"\n",
195
+ "backtest = result.backtest\n",
196
"backtest_eval = defaultdict(list)\n",
197
"for metric, value in backtest.train_evaluation.items():\n",
198
" backtest_eval[metric].append(value)\n",
0 commit comments