Hi @Yu Cai
Thank you for your response and confirming that my answer helped.
To reiterate the resolution here, let me jot down the gist of my comment answer above, so that other community users having the same question, can easily reference this!
As per your query, to use Azure Machine Learning Studio for time-series analysis, you can use the Time Series algorithm in the Automated ML interface. However, the data format you provided does not work with the Automated ML user interface.
To fit your data into Azure Machine Learning Automated ML, you can use the following format:
- Each row represents a single observation.
- The first column should be the timestamp.
- The remaining columns should be the features
For instance:
In this example, the timestamp is in the first column, and the remaining columns are the features. You can use the available Weight, Height, and Target_Predict values at different ages to predict the future Target_Predict data points.
I tried to repro with the above dataset and was able to successfully forecast for the above TS data format.
Please refer the doc - How AutoML uses your data for more details.
I hope this helps!
Thank you again for your time and patience throughout this issue.
Please don’t forget to Accept Answer
and Yes
for "was this answer helpful" wherever the information provided helps you, this can be beneficial to other community members.