mqr.anova.
coeffs#
- mqr.anova.coeffs(result, conf=0.95, formatted=True)#
The coefficients from regression and their confidence intervals.
- Parameters:
- resultstatsmodels.regression.linear_model.RegressionResults
Result of calling fit on a statsmodels linear regression model.
- conf: float, optional
Confidence level used to form an interval (decimal).
- formattedbool, optional
When True, returns a formatted DataFrame. Set this to False to access the calculated values.
- Returns:
- pandas.DataFrame or pandas.io.formats.style.Styler
Coefficients indexed by name from the model. A DataFrame when formatted is True, a Styler otherwise.