3.6.1.1.13. statsmodels.graphics.api.plot_partregress_grid¶
-
statsmodels.graphics.api.
plot_partregress_grid
(results, exog_idx=None, grid=None, fig=None)[source]¶ Plot partial regression for a set of regressors.
Parameters: results : results instance
A regression model results instance
exog_idx : None, list of ints, list of strings
(column) indices of the exog used in the plot, default is all.
grid : None or tuple of int (nrows, ncols)
If grid is given, then it is used for the arrangement of the subplots. If grid is None, then ncol is one, if there are only 2 subplots, and the number of columns is two otherwise.
fig : Matplotlib figure instance, optional
If given, this figure is simply returned. Otherwise a new figure is created.
Returns: fig : Matplotlib figure instance
If fig is None, the created figure. Otherwise fig itself.
Notes
A subplot is created for each explanatory variable given by exog_idx. The partial regression plot shows the relationship between the response and the given explanatory variable after removing the effect of all other explanatory variables in exog.
References
See http://www.itl.nist.gov/div898/software/dataplot/refman1/auxillar/partregr.htm