Skip to content

Commit

Permalink
Fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-hse-repository committed Mar 29, 2023
1 parent ce8fbcf commit ff592f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion etna/models/moving_average.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class MovingAverageModel(SeasonalMovingAverageModel):
Notes
-----
This model supports in-sample and out-of-sample prediction decomposition.
Prediction components are corresponding target lags with weights of 1/window.
Prediction components are corresponding target lags with weights of :math:`1/window`.
"""

def __init__(self, window: int = 5):
Expand Down
2 changes: 1 addition & 1 deletion etna/models/seasonal_ma.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class SeasonalMovingAverageModel(
Notes
-----
This model supports in-sample and out-of-sample prediction decomposition.
Prediction components are corresponding target lags with weights of 1/window.
Prediction components are corresponding target lags with weights of :math:`1/window`.
"""

def __init__(self, window: int = 5, seasonality: int = 7):
Expand Down

0 comments on commit ff592f8

Please sign in to comment.