Bicop.from_data
- Bicop.from_data(data: numpy.ndarray[dtype=float64, shape=(*, 2), order='F'], controls: pyvinecopulib.FitControlsBicop = FitControlsBicop(), var_types: collections.abc.Sequence[str] = ['c', 'c']) pyvinecopulib.Bicop
Instantiates from data.
Equivalent to creating a default
Bicop()and then selecting the model usingBicop.select().- Parameters:
data – See
Bicop.select().controls – See
Bicop.select().var_types – Two strings specifying the types of the variables, e.g.,
("c", "d")means first variable continuous, second discrete.