Are there libraries in R for estimating time-varying joint distributions via copulas?
Hedibert Lopes has an excellent paper on the topic here. I know there is an existing packaged called copula but it fits a static copula.
|
|
I think an extremely interesting strand of research on this topic is represented by extensions of vine copulas with time-varying parameters. For vine copulas in general have a look at this site from the Technische Universität München: One of their research projects, which is the most relevant in this context, is: It is well worth keeping an eye on since they implement their research models in R, concerning the current status of the implementation please have a look at this presentation here: You'll find the respective package CDVine on CRAN: Here The vignette can be found in the Journal of Statistical Software. (I will update this post when the new code for the time-varying parameters becomes available.) |
||||
|
|
|
Once we start building time-varying copulas like Lopes suggests in that paper, I think we are better off venturing into the world of state space models. When viewed in a bayesian context, the similarities between the approaches are striking to me. The advantage of the copula, as I understand it, is that it is a quick and dirty way to understand the structure of your marginal distributions by simplifying the dependence structure over time. I did not find anything in the Lopes paper to suggest what algo he uses to estimate the params of his time-varying copulas and marginals, but I expect that this is done using something like a forward/backward algorithm (used in ssm estimation) since he mentions that the marginals and copulas are estimated in the same "step". There are great open source ssm packages that you could extend in R and python, if this approach interests you: |
|||||
|