statsmodels.stats.outliers_influence.MLEInfluence.resid_studentized#
- MLEInfluence.resid_studentized[source]#
Studentized default residuals
This uses the residual in resid attribute, which is by default resid_pearson, and is studentized using the generalized leverage.
self.resid / np.sqrt(1 - self.hat_matrix_diag)
Studentized residuals are not available if hat_matrix_diag is None.