When it comes to sequence modeling, with a given datetime feature in the column:
How to handle additional inputs such as year # , day # , month #
Should these data be pre processed as a regular quantitative feature (for example Z score scaling) or labeled a categorical feature and encoded?
for example:
# this column is already in the data
dates = [ 2021-1-1 , 2021-2-2, 2021-3-3]
# separate added features
day = [ 1 , 2, 3]
month = [1,2,3]
year = [2021,2021,2021]
I've seen both ways but really would appreciate some reasoning.