statsmodels.genmod.families.family.NegativeBinomial.resid_anscombe¶
-
NegativeBinomial.
resid_anscombe
(endog, mu, var_weights=1.0, scale=1.0)[source]¶ The Anscombe residuals
- Parameters
- endog
ndarray
The endogenous response variable
- mu
ndarray
The inverse of the link function at the linear predicted values.
- var_weightsarray_like
1d array of variance (analytic) weights. The default is 1.
- scale
float
,optional
An optional argument to divide the residuals by sqrt(scale). The default is 1.
- endog
- Returns
- resid_anscombe
ndarray
The Anscombe residuals as defined below.
- resid_anscombe
Notes
Anscombe residuals for Negative Binomial are the same as for Binomial upon setting n=−1α. Due to the negative value of −α∗Y the representation with the hypergeometric function H2F1(x)=hyp2f1(2/3.,1/3.,5/3.,x) is advantageous
resid_anscombei=32∗(Y(i2/3)∗H2F1(−α∗Yi)−μ(i2/3)∗H2F1(−α∗μi))/(μi∗(1+α∗μi)∗scale3)(1/6)∗√(var_weights)Note that for the (unregularized) Beta function, one has Beta(z,a,b)=za/a∗H2F1(a,1−b,a+1,z)