-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Forecasting Data #10
Comments
If you look at the code of , this is what it does:
If you use sliding_regression_forecast(), make sure that your sample size if only a few points, not the entire size of your data. |
@26medias if I am collecting temperature data every 10 minutes. So I'll have 144 records for the whole day. |
In that case, yes, it makes sense If it still doesn't work, can you send a demo of your code on https://plnkr.co/ or another JS editor? |
I've a data set of 120 items i need to forecast next item or next 5 items how to do it.
I've tried below example
`var forecastDatapoint = 121;
I have noticed that you've no where used
forecastDatapoint
this variable in above example so how exactly you're calculating 121 (11 in example) data pointalso tired the
sliding_regression_forecast
but it failed to show red dot indicate at which point the forecast starts.can you help in forecasting next 5 data points?
The text was updated successfully, but these errors were encountered: