3.11.3.1.5. statsmodels.stats.anova.anova_single¶
-
statsmodels.stats.anova.
anova_single
(model, **kwargs)[source]¶ ANOVA table for one fitted linear model.
Parameters: model : fitted linear model results instance
A fitted linear model
typ : int or str {1,2,3} or {“I”,”II”,”III”}
Type of sum of squares to use.
**kwargs**
scale : float
Estimate of variance, If None, will be estimated from the largest
model. Default is None.
test : str {“F”, “Chisq”, “Cp”} or None Test statistics to provide. Default is “F”.
Notes
Use of this function is discouraged. Use anova_lm instead.