Discussed Time Series Features #6
Gerhardsa0
started this conversation in
Library Discussion
Replies: 3 comments 4 replies
|
Should a time series have the feature to be shuffled? Because the data has an order, which is also important for a nn model to learn, and I think also statistical models don't want/need the data to be shuffled. The same for sorting rows, because they should always be sorted by the date. |
0 replies
|
Should the time column be transformable? |
1 reply
|
Based on those questions, you should also consider whether a |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
When working with time series, you normally always want a time column, which can be the dates or just normal indices called time dummies.
Right now, a user always needs to give specific a time column name, but should a user also be possible to not give a time name, and a time dummie column will generate automatically.
All reactions