statsmodels.discrete.count_model.ZeroInflatedGeneralizedPoisson.get_distribution¶
- ZeroInflatedGeneralizedPoisson.get_distribution(params, exog=None, exog_infl=None, exposure=None, offset=None)[source]¶
 Get frozen instance of distribution based on predicted parameters.
- Parameters:¶
 - paramsarray_like
 The parameters of the model.
- exog
ndarray,optional Explanatory variables for the main count model. If
exogis None, then the data from the model will be used.- exog_infl
ndarray,optional Explanatory variables for the zero-inflation model.
exog_inflhas to be provided ifexogwas provided unlessexog_inflin the model is only a constant.- offset
ndarray,optional Offset is added to the linear predictor of the mean function with coefficient equal to 1. Default is zero if exog is not None, and the model offset if exog is None.
- exposure
ndarray,optional Log(exposure) is added to the linear predictor of the mean function with coefficient equal to 1. If exposure is specified, then it will be logged by the method. The user does not need to log it first. Default is one if exog is is not None, and it is the model exposure if exog is None.
- Returns:¶
 Instanceoffrozenscipydistributionsubclass.