Note
Go to the end to download the full example code.
Estimate a Vine copulaΒΆ
import openturns as ot
import otvine
Generate a copula sample
sample = ot.ClaytonCopula().getSample(1000)
Estimate a Vine copula
factory = otvine.VineCopulaFactory()
distribution = factory.build(sample)
Total running time of the script: (0 minutes 1.554 seconds)
otvine