statsmodels.discrete.count_model.GenericZeroInflated.predict

method

GenericZeroInflated.predict(params, exog=None, exog_infl=None, exposure=None, offset=None, which='mean')[source]

Predict response variable of a count model given exogenous variables.

Parameters
paramsarray-like

The parameters of the model

exogarray, optional

A reference to the exogenous design. If not assigned, will be used exog from fitting.

exog_inflarray, optional

A reference to the zero-inflated exogenous design. If not assigned, will be used exog from fitting.

offsetarray, optional

Offset is added to the linear prediction with coefficient equal to 1.

exposurearray, optional

Log(exposure) is added to the linear prediction 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.

whichstring, optional

Define values that will be predicted. ‘mean’, ‘mean-main’, ‘linear’, ‘mean-nonzero’, ‘prob-zero, ‘prob’, ‘prob-main’ Default is ‘mean’.