Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC] improved docstring for AutoETS #4116

Merged
merged 4 commits into from Jan 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 6 additions & 4 deletions sktime/forecasting/ets.py
Expand Up @@ -20,13 +20,15 @@
class AutoETS(_StatsModelsAdapter):
"""ETS models with both manual and automatic fitting capabilities.

Manual fitting is adapted from the statsmodels version,
while automatic fitting is adapted from the R version of ets.
Manual (fixed parameter) use (`auto=False`, default) is a direct interface
to `statsmodels` `ETSModel` [2]_,
while automated tuning (`auto=True`) is an adaptation of the R version of ets [3]_,
on top of `statsmodels` `ETSModel`.

The first few parameters are the same as the ones on statsmodels
The first parameters are direct interfaces to the `statsmodels` parameters
(from ``error`` to ``return_params``) [2]_.

The next few parameters are adapted from the ones on R
The remaining parameters are adaptations of the parameters of R ets
(``auto`` to ``additive_only``) [3]_,
and are used for automatic model selection.

Expand Down