-
Notifications
You must be signed in to change notification settings - Fork 1.8k
fix: time series model types available #1354
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
Conversation
@TremaMiguel Could we actually use an Enum for this instead? |
@Yard1 you mean replacing the variable |
@TremaMiguel It is useful when you have categorical variables like this (similar to the FREQUENCY values that you have). ENUM comes with several benefits like easy edits, containment tests (allowed value test), etc. |
To add to what @ngupta23 said, Enum would have built-in checking for whether the values are allowed, and would allow us to use Intellisense when adding new models. |
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.
I've taken the liberty of using the Enum features more, let me know if anything is unclear @TremaMiguel
Thanks @Yard1 |
Describe the changes you've made
Major changes include:
models()
. linkcompare_models()
. linkType of change
Please delete options that are not relevant.
Checklist:
Screenshots