I am working on demand forecasting where my timestamp duration is 15 minutes and i have attached sample output to below documents.The issue i am facing is despite setting DATA_FREQUENCY = [AUTO_FREQUENCY].ii am getting the error "Invalid time series: the finest data frequency supported is PER_MINUTE. All input time intervals must be at least one minute" and the query for create model is given below
Solved! Go to Solution.
What is happening is that using “AUTO_FREQUENCY” is trying to send the Information as “PER_MINUTE” because of your data, and this needs to have an interval value per minute in each HOUR. You could try with “HOURLY” instead of “AUTO_FREQUENCY”, and it should work.
Instead of:
DATA_FREQUENCY = 'AUTO_FREQUENCY'
Use “HOURLY” or any other DATA_FREQUENCY:
DATA_FREQUENCY = 'HOURLY'
What is happening is that using “AUTO_FREQUENCY” is trying to send the Information as “PER_MINUTE” because of your data, and this needs to have an interval value per minute in each HOUR. You could try with “HOURLY” instead of “AUTO_FREQUENCY”, and it should work.
Instead of:
DATA_FREQUENCY = 'AUTO_FREQUENCY'
Use “HOURLY” or any other DATA_FREQUENCY:
DATA_FREQUENCY = 'HOURLY'
User | Count |
---|---|
2 | |
1 | |
1 | |
1 | |
1 |