1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
:hero: examples and tutorials to get started with statsmodels
:orphan:
.. _statsmodels-examples:
Examples
========
This page provides a series of examples, tutorials and recipes to help you get
started with ``statsmodels``. Each of the examples shown here is made available
as an IPython Notebook and as a plain python script on the `statsmodels github
repository <https://github.com/statsmodels/statsmodels/tree/main/examples>`_.
We also encourage users to submit their own examples, tutorials or cool
`statsmodels` trick to the `Examples wiki page
<https://github.com/statsmodels/statsmodels/wiki/Examples>`_
.. toctree::
{# This content is white space sensitive. Do not reformat #}
{% for category in examples%}
{% set underscore = "-" * (category.header | length) %}
.. raw:: html
<div class="example-header-clear"> </div>
{{ category.header }}
{{ underscore }}
.. toctree::
:maxdepth: 1
:hidden:
{% for notebook in category.links %} {{ notebook.target | replace('.html','') }}
{% endfor %}
{%- for notebook in category.links %}
{% set heading = "`" ~ notebook.text ~ " <" ~ notebook.target|e ~ ">`_" %}
.. container:: example
{{ heading }}
.. image:: {{ notebook.img }}
:target: {{ notebook.target }}
:width: 240px
{%- endfor %}
{% endfor %}
|