[ENH] VAR and VECM models
See original GitHub issue@fkiraly update: almost done, all that is missing is predict_interval
for VECM.
@fkiraly’s summary of the discussion:
We should interface VAR and VECM from statsmodels
.
Have you considered porting Vector Autoregressions (VAR)
and Vector Error Correction Models (VECM)
from statsmodels? This would be a great addition. Thank you
Issue Analytics
- State:
- Created 2 years ago
- Reactions:2
- Comments:17 (2 by maintainers)
Top Results From Across the Web
[ENH] VAR and VECM models · Issue #929 - GitHub
This variables is used in estimate_vecm_ml function of statsmodel's VECM class, and is required for getting the desired result. Now, in the estimator...
Read more >Time-series Analysis with VAR & VECM: Statistical approach
Modeling Time-series Stochastic Data ... VECTOR auto-regressive (VAR) integrated model comprises multiple time series and is quite a useful tool for forecasting.
Read more >Part 1-VAR and VECM Model Estimation in STATA - YouTube
In this video, I have tried to explain how to conduct VAR model ( vector autoregression model ) and VECM model ( vector...
Read more >Application of Vector Error Correction Model ... - IOPscience
This idea of Vector Error Correction Model (VECM), which consists of a VAR model of the order p - 1 on the differences...
Read more >Introduction to the Fundamentals of Vector Autoregressive ...
VAR models differ from univariate autoregressive models because they allow feedback to occur between the variables in the model. For example, we ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
As discussed in the latest mentoring meeting @thayeylolu will be working on this.
The interface will assume
pd.DataFrame
as input to_fit
, and as return from_predict
, no other types for the moment.This means it should eventually be compatible irrespective of whichever of the two proposed designs #980 and #1074 we go with.
FYI, @mloning.
Other implementation notes