-
Notifications
You must be signed in to change notification settings - Fork 23
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
Change integers for season_peak and season_trough #126
Comments
Ideally this would give you a year-less unit, much like r-lib/clock#61 as this would allow us to embed the "quarter" component to this. I don't know of an established data structure for this type of data yet, but I'm hoping I think the right approach for this is to provide more information to the feature methods (specifically the data's index). Currently the value is relative to the starting time within the seasonal period. I don't want to offset it to edit: However if/when |
Actually I think 1 should always be Q1 for quarterly data. So with monthly data, if the first month in the data set is February, and the seasonal peak is March, then it should take |
Yes, this is what I would like also. In combination with potential improvements in time/date classes ({clock} 🤞), this would allow us to provide |
These current take values 0:(m-1). It would be much easier to interpret if they took 1:m by changing 0 to m and leaving the others as they are. See https://otexts.com/fpp3/exploring-australian-tourism-data.html where we have had to modify it to get an interpretable graph.
The text was updated successfully, but these errors were encountered: