statsmodels.stats.outliers_influence.GLMInfluence.resid_score¶
- GLMInfluence.resid_score(joint=True, index=None, studentize=False)¶
Score observations scaled by inverse hessian.
Score residual in resid_score are defined in analogy to a score test statistic for each observation.
- Parameters:
joint (bool) – If joint is true, then a quadratic form similar to score_test is returned for each observation. If joint is false, then standardized score_obs are returned. The returned array is two-dimensional
index (ndarray (optional)) – Optional index to select a subset of score_obs columns. By default, all columns of score_obs will be used.
studentize (bool) – If studentize is true, the the scaled residuals are also studentized using the generalized leverage.
- Returns:
array
- Return type:
1-D or 2-D residuals
Notes
Status: experimental
Because of the one srep approacimation of d_params, score residuals are identical to cooks_distance, except for
cooks_distance is normalized by the number of parameters
cooks_distance uses cov_params, resid_score is based on Hessian. This will make them differ in the case of robust cov_params.