diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html new file mode 100644 index 0000000..60ab8b2 --- /dev/null +++ b/docs/_templates/layout.html @@ -0,0 +1,14 @@ +{% extends "!layout.html" %} + +{% block footer %} +{{ super() }} + + + +{% endblock %} diff --git a/pyFTS/notebooks/Chen - ConventionalFTS.ipynb b/pyFTS/notebooks/Chen - ConventionalFTS.ipynb index 8d26ca4..ec88a28 100644 --- a/pyFTS/notebooks/Chen - ConventionalFTS.ipynb +++ b/pyFTS/notebooks/Chen - ConventionalFTS.ipynb @@ -82,7 +82,7 @@ "from pyFTS.benchmarks import benchmarks as bchmk, Util as bUtil\n", "from pyFTS.partitioners import Util as pUtil\n", "\n", - "from pyFTS.models import yu\n" + "from pyFTS.models import chen\n" ] }, { @@ -186,9 +186,82 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DatasetADF Statisticp-valueCr. Val. 1%Cr. Val. 5%Cr. Val. 10%
0TAIEX-2.6567280.081830-3.431601-2.862093-2.567064
1SP500-1.7471710.406987-3.431811-2.862186-2.567114
2NASDAQ0.4762240.984132-3.432022-2.862279-2.567163
\n", + "
" + ], + "text/plain": [ + " Dataset ADF Statistic p-value Cr. Val. 1% Cr. Val. 5% Cr. Val. 10%\n", + "0 TAIEX -2.656728 0.081830 -3.431601 -2.862093 -2.567064\n", + "1 SP500 -1.747171 0.406987 -3.431811 -2.862186 -2.567114\n", + "2 NASDAQ 0.476224 0.984132 -3.432022 -2.862279 -2.567163" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "from statsmodels.tsa.stattools import adfuller\n", "\n",