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)