Bicop.from_family
- Bicop.from_family(family: pyvinecopulib.families.BicopFamily = BicopFamily.indep, rotation: int = 0, parameters: numpy.ndarray = array([], shape=(0, 0), dtype=float64), var_types: collections.abc.Sequence[str] = ['c', 'c']) pyvinecopulib.core.Bicop
Instantiates a specific bivariate copula model.
- Parameters:
- familyBicopFamily
The copula family.
- rotationint
The rotation of the copula; one of 0, 90, 180, or 270 (for Independence, Gaussian, Student, Frank, and nonparametric families, only 0 is allowed).
- parametersndarray, shape (n, m), dtype float
The copula parameters.
- var_typeslist of str
Two strings specifying the types of the variables, e.g.,
("c", "d")means first variable continuous, second discrete.