-
Notifications
You must be signed in to change notification settings - Fork 9
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
using ARDL to forecast #5
Comments
A function similar to ecm::ecmpredict() would be awesome! |
Is it possible to use ARDL package to predict/forecast? |
same question |
Thank you for mentioning this. I will create a workaround solution in the next update.
This happens because I mess around with the environments of the objects in the functions Solution 1:I would consider leaving the environments as exported from the
This is something that already happens with the
Solution 2:On the other hand, a simpler solution would be to create a functionality to convert an ARDL/ECM model into a regular Solution 3:Combining both of these solutions. The functionality of solution 2 would be used for practical usage such as forecasting, and solution 1 for special cases when someone needs the heritage from the Big concern:In the following example, I show how you can still forecast using the ARDL package.
These four series, in theory, should be identical. I think I will go for solution 2 first (the option to convert into |
Solution 2 is finally done in 880fae4. |
I think, it is because of
or not. |
Yes, this was the problem. The conflicts you mention are irrelevant though. |
It works. |
Hi, forgive me if it's covered somewhere, but is there a way to use this to create forecasts?
I have a model looking like this:
models <- auto_ardl(y~ x+ z,data = df, max_order = 5)
and I have x and z going forward about 20 periods. Ideally i would be able to pass a dataframe and solve that way, but i'm not sure how. Is this possible?
Thanks
The text was updated successfully, but these errors were encountered: