A fully `Distributions.jl`-compliant copula package
Copulas.jl
brings most standard copula features into native Julia: random number generation, pdf and cdf, fitting, copula-based multivariate distributions through Sklar's theorem, etc. Since copulas are distribution functions, we fully comply with the Distributions.jl
API. This allows interoperability with the broader ecosystem, based on this API, such as, e.g., Turing.jl
.
Usually, people that use and work with copulas turn to R, because of the amazing package R::copula
. While well-maintained and regularly updated, R::copula
is a mixture of obscure, heavily optimized C
code and more standard R
code, which makes it a complicated code base for readability, extensibility, reliability and maintenance.
This is an attempt to provide a very light, fast, reliable and maintainable copula implementation in native Julia. One of the notable benefits of such a native implementation (among others) is the floating point type agnosticity, i.e. compatibility with BigFloat
, DoubleFloats
, MultiFloats
, etc.
The package revolves around two main types:
Copula
, an abstract mother type for all the copulas in the packageSklarDist
, a distribution type that allows construction of a multivariate distribution by specifying the copula and the marginals through Sklar's theorem.
Warning: This is fairly experimental work, use with caution.
The package is registered in Julia's General registry so you may simply install the package by running :
] add Copulas
The API contains random number generation, cdf and pdf evaluation, and the fit
function from Distributions.jl
. A typical use case might look like this:
using Copulas, Distributions, Random
X₁ = Gamma(2,3)
X₂ = Pareto()
X₃ = LogNormal(0,1)
C = ClaytonCopula(3,0.7) # A 3-variate Clayton Copula with θ = 0.7
D = SklarDist(C,(X₁,X₂,X₃)) # The final distribution
simu = rand(D,1000) # Generate a dataset
# You may estimate a copula using the `fit` function:
D̂ = fit(SklarDist{ClaytonCopula,Tuple{Gamma,Normal,LogNormal}}, simu)
The list of availiable copula models is very large, check it out on our documentation !
The general implementation philosophy is for the code to follow the mathematical boundaries of the implemented concepts. For example, this is the only implementation we know (in any language) that allows for all Archimedean copulas to be sampled: we use the Williamson transformation for non-standard generators, including user-provided black-box ones.
There are competing packages in Julia, such as BivariateCopulas.jl
which only deals with a few models in bivariate settings but has very nice graphs, or DatagenCopulaBased.jl
, which only provides sampling and does not have exactly the same models as Copulas.jl
. While not fully covering out both of these package's functionality (mostly because the three projects chose different implementation paths), Copulas.jl
brings, as a key feature, the compliance with the broader ecosystem. The following table provides a feature comparison between the three:
Copulas.jl |
DatagenCopulaBased.jl |
BivariateCopulas.jl |
|
---|---|---|---|
Distributions.jl 's API |
✔️ | ❌ | ✔️ |
Fitting | ✔️ | ❌ | ❌ |
Plotting | ❌ | ❌ | ✔️ |
Available copulas | |||
- Classic Bivariate | ✔️ | ✔️ | ✔️ |
- Classic Multivariate | ✔️ | ✔️ | ❌ |
- Archimedeans | ✔️ (All of them) | ||
- Bivariate Extreme Value | ✔️ | ❌ | ❌ |
- Obscure Bivariate | ✔️ | ❌ | ❌ |
- Archimedean Chains | ❌ | ✔️ | ❌ |
Since our primary target is maintainability and readability of the implementation, we did not consider the efficiency and the performance of the code yet. Proper benchmarks will come in the near future.
If you want to contribute to the package, ask a question, found a bug or simply want to chat, do not hesitate to open an issue on this repo. General guidelines on collaborative practices (colprac) are available at https://github.com/SciML/ColPrac.
Do not hesitate to star this repository to show support. If you use this package in your researches, please cite it with the following bibtex code:
@article{LavernyJimenez2024,
author = {Oskar Laverny and Santiago Jimenez},
title = {Copulas.jl: A fully Distributions.jl-compliant copula package},
journal = {Journal of Open Source Software},
doi = {10.21105/joss.06189},
url = {https://doi.org/10.21105/joss.06189},
year = {2024},
publisher = {The Open Journal},
volume = {9},
number = {94},
pages = {6189}
}