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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -