Back to Statsmodels

Class

docs/source/_templates/autosummary/class.rst

0.15.0.dev0821 B
Original Source

{{ fullname | escape | underline}}

.. currentmodule:: {{ module }}

.. autoclass:: {{ objname }} :exclude-members: {% for item in methods %}{%- if not item.startswith('_') or item in ['call'] %}{{ item }},{% endif %}{%- endfor %}

{% block methods %} {% if methods %} .. rubric:: Methods

.. autosummary:: :toctree:

{% for item in methods %} {%- if not item.startswith('_') or item in ['call'] %} ~{{ name }}.{{ item }} {% endif %} {%- endfor %} {% endif %} {% endblock %}

{% block attributes %} {% if attributes %} .. rubric:: Properties

.. autosummary:: :toctree:

{% for item in attributes %} {%- if not item.startswith('_') or item in ['call'] %} ~{{ name }}.{{ item }} {% endif %} {%- endfor %} {% endif %} {% endblock %}