How are date features utilized in Microsoft Azure Machine Studio -


i'm using microsoft azure machine learning , wondering if had done experiments on date time features. doe sit automatically derive additional features "day of week", "day of month", "hour of day" them, or have provide these?

i not find info in official documentation (and lack of microsoft support forum =)

azure ml supports "execute-r" module can used accomplish in r - few examples below

x<-as.date("12/3/2009", "%m/%d/%y")

months.date(x)

[1] "december"

weekdays.date(x)

[1] "thursday"

quarters(x)

[1] "q4"


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

Kivy: Swiping (Carousel & ScreenManager) -