statsmodels.genmod.families.family.Binomial.deviance¶
-
Binomial.
deviance
(endog, mu, freq_weights=1, scale=1.0)[source]¶ Deviance function for either Bernoulli or Binomial data.
Parameters: endog : array-like
Endogenous response variable (already transformed to a probability if appropriate).
mu : array
Fitted mean response variable
freq_weights : array-like
1d array of frequency weights. The default is 1.
scale : float, optional
An optional scale argument. The default is 1.
Returns: deviance : float
The deviance function as defined below
Notes
If the endogenous variable is binary:
where is an indicator function that evalueates to 1 if . and is an indicator function that evaluates to 1 if .
If the model is ninomial:
where and are as defined in Binomial.initialize.