I'm using Microsoft Azure Machine Learning and was wondering if anyone had done some experiments on date time features. Doe sit automatically derive additional features like "day of week", "day of month", "hour of day" from them, or do I have to provide these?
I could not find any info in the official documentation (and a lack of a Microsoft support forum =)
Azure ML supports "execute-R" module which can be easily used to accomplish this in R - few examples below
x<-as.Date("12/3/2009", "%m/%d/%Y")
[1] "December"
[1] "Thursday"
[1] "Q4"