Ariox66
Ariox66

Reputation: 660

Forecasting sales per item in Azure ML algorithm choice

I have almost 10 years of sales data, let's assume in below format:

 DateKey    Product     Count    Price      Type 

 20140701    Shoe        10      $100         X
 20140701    Shoe         5      $40          Y
 20140702    Shirt       50      $80          Z
 20140703    Shoe        10      $105         A
.

.

 20180630   . ......

Now I want to predict this financial Year (2018-19) sales breakdown.

I have sales data for July 2018 which I can use to score my model, But I am not sure which algorithm to use. I am using Azure ML Studio

Upvotes: 0

Views: 226

Answers (1)

Alibek Jakupov
Alibek Jakupov

Reputation: 620

There are plenty of sample experiments in Cortana Gallery. This one for example may provide you a brief overview of time series forecasting using Azure ML Studio

Upvotes: 1

Related Questions