-
Notifications
You must be signed in to change notification settings - Fork 3.3k
fix doc for extrapolate_trend and allow period
as well
#9510
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
base: main
Are you sure you want to change the base?
fix doc for extrapolate_trend and allow period
as well
#9510
Conversation
…odels.tsa.seasonal.seasonal_decompose
@@ -802,7 +802,7 @@ def test_interpolate_trend(self): | |||
trend = seasonal_decompose(x, period=freq, extrapolate_trend=5).trend |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you rename Freq to period in these tests? Sounds like Freq is not used at all, aside from the keyword.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point. Done
Also changed it here: https://github.com/turbotimon/statsmodels/blob/031428a03473fb36b4b5bad5155afc246a28673b/statsmodels/tsa/tests/test_seasonal.py#L941
@@ -181,7 +181,8 @@ def seasonal_decompose( | |||
nsides = int(two_sided) + 1 | |||
trend = convolution_filter(x, filt, nsides) | |||
|
|||
if extrapolate_trend == "freq": | |||
# 'freq' is still accepted for legacy purposes | |||
if extrapolate_trend in ("freq", "period"): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally we would deprecate 'freq' here and warn that 'freq' will error after the 0.16 release.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree. Can you please check and tell me if I need to do something more with respect to deprecating it?
extrapolate_trend
inseasonal_decompose
wrong description offreq
instead ofperiod
#9509NumPy's guide.
Proposed changes with explanation, see #9509
It's my "very first issue" for statmodels, please tell me if something needs to be improved