It's common to normalize the different vars before applying some kind of supervised/unsupervised learning.
Which algorithm do you use with the dates? You use the day of year (1, 200, 300) and perform the scaling/normalization on that values?
Or is there a way to maintain the circular values of the date (because 365 It's more near to 1, than 200).
--------------------- Edited ---------------------------
I explain a bit more my problem.
I want to make segmentation based in dates values. If I use for example K-means if I use the day of year: 1,20,365 the algorithm will think that 365 is far from 1, but the true is that is really near.
I want to know how can I normalize the data to have near values if they are near in the realtime, (I usually use the mean and max diff approximation but with that case it shouldn't work).