statsmodels.stats.outliers_influence.MLEInfluence.plot_influence

MLEInfluence.plot_influence(external=None, alpha=0.05, criterion='cooks', size=48, plot_alpha=0.75, ax=None, **kwargs)

Plot of influence in regression. Plots studentized resids vs. leverage.

Parameters:
externalbool

Whether to use externally or internally studentized residuals. It is recommended to leave external as True.

alphafloat

The alpha value to identify large studentized residuals. Large means abs(resid_studentized) > t.ppf(1-alpha/2, dof=results.df_resid)

criterionstr {‘DFFITS’, ‘Cooks’}

Which criterion to base the size of the points on. Options are DFFITS or Cook’s D.

sizefloat

The range of criterion is mapped to 10**2 - size**2 in points.

plot_alphafloat

The alpha of the plotted points.

axAxesSubplot

An instance of a matplotlib Axes.

**kwargs

Additional parameters passed through to plot.

Returns:
Figure

The matplotlib figure that contains the Axes.

Notes

Row labels for the observations in which the leverage, measured by the diagonal of the hat matrix, is high or the residuals are large, as the combination of large residuals and a high influence value indicates an influence point. The value of large residuals can be controlled using the alpha parameter. Large leverage points are identified as hat_i > 2 * (df_model + 1)/nobs.

Examples

Using a model built from the the state crime dataset, plot the influence in regression. Observations with high leverage, or large residuals will be labeled in the plot to show potential influence points.

>>> import statsmodels.api as sm
>>> import matplotlib.pyplot as plt
>>> import statsmodels.formula.api as smf
>>> crime_data = sm.datasets.statecrime.load_pandas()
>>> results = smf.ols('murder ~ hs_grad + urban + poverty + single',
...                   data=crime_data.data).fit()
>>> sm.graphics.influence_plot(results)
>>> plt.show()

(Source code, png, hires.png, pdf)

../_images/graphics_regression_influence.png

Last update: Dec 14, 2023