DanielBok / copulae

Multivariate data modelling with Copulas in Python
https://copulae.readthedocs.io/en/latest/
MIT License
141 stars 26 forks source link

Feature Request - Plot a copula #52

Open adrmarty opened 1 year ago

adrmarty commented 1 year ago

Usage example :

from copulae import GumbelCopula
cop = GumbelCopula(dim=2)
cop.fit(SOME_DATA)
cop.plot_cdf()
cop.plot_pdf()