FitControlsVinecop.__init__

FitControlsVinecop.__init__(self: pyvinecopulib.FitControlsVinecop, family_set: List[pyvinecopulib.BicopFamily] = [<BicopFamily.indep: 0>, <BicopFamily.gaussian: 1>, <BicopFamily.student: 2>, <BicopFamily.clayton: 3>, <BicopFamily.gumbel: 4>, <BicopFamily.frank: 5>, <BicopFamily.joe: 6>, <BicopFamily.bb1: 7>, <BicopFamily.bb6: 8>, <BicopFamily.bb7: 9>, <BicopFamily.bb8: 10>, <BicopFamily.tll: 11>], parametric_method: str = 'mle', nonparametric_method: str = 'quadratic', nonparametric_mult: float = 1.0, trunc_lvl: int = 18446744073709551615, tree_criterion: str = 'tau', threshold: float = 0.0, selection_criterion: str = 'bic', weights: numpy.ndarray[numpy.float64[m, 1]] = array([], dtype=float64), psi0: float = 0.9, preselect_families: bool = True, select_trunc_lvl: bool = False, select_threshold: bool = False, show_trace: bool = False, num_threads: int = 1)None

Instantiates custom controls for fitting vine copula models.

Parameter family_set:

The set of copula families to consider (if empty, then all families are included).

Parameter parametric_method:

The fit method for parametric families; possible choices: "mle", "itau".

Parameter nonparametric_method:

The fit method for the local-likelihood nonparametric family (TLLs); possible choices: "constant", "linear", "quadratic".

Parameter nonparametric_mult:

A factor with which the smoothing parameters are multiplied.

Parameter trunc_lvl:

Truncation level for truncated vines.

Parameter tree_criterion:

The criterion for selecting the maximum spanning tree (“tau”, “hoeffd”, “rho”, and “mcor” implemented so far).

Parameter threshold:

For thresholded vines (0 = no threshold).

Parameter selection_criterion:

The selection criterion ("loglik", "aic" or "bic").

Parameter weights:

A vector of weights for the observations.

Parameter psi0:

Only for `selection_criterion = “mbic”, prior probability of non-independence.

Parameter preselect_families:

Whether to exclude families before fitting based on symmetry properties of the data.

Parameter select_trunc_lvl:

Whether the truncation shall be selected automatically.

Parameter select_threshold:

Whether the threshold parameter shall be selected automatically.

Parameter show_trace:

Whether to show a trace of the building progress.

Parameter num_threads:

Number of concurrent threads to use while fitting pair copulas within a tree; never uses more than the number of concurrent threads supported by the implementation.