-
Notifications
You must be signed in to change notification settings - Fork 98
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
forecast with regressors #38
Comments
Yes, it's possible, but you need to supply the data to the regressor before making prediction. The May I know how you supply the new features into the model? One way to do is via pydlm/pydlm/predict/dlmPredictMod.py Line 86 in a2bbfd9
|
I'm having the same issue. (predictMean, predicrVar) = drm.predictN(N=3,date=drm.n-1, featureDict=newf) NameError: The step is out of range I'm not sure what I'm doing wrong in setting up the future values of the predictor variable. |
Same here. I try to output 12 months ahead (N=12) with the featureDict having 12 dynamic components. But I still get the NameError: The step is out of range. Could you please provide any insights? |
same here. I am confused to use featuredict. any example of using this will be good |
Is it possible to forecast with regressors such as in the Google example? I first split the data into a train and valid set. I fit the train set. Then I conform the valid set regressors into a dictionary as such:
However, I am seeing a
NameError: The step is out of range
error.The text was updated successfully, but these errors were encountered: