What does the 'bse' in the `results` object represent?

Question

Grade: Education Subject: Support
What does the 'bse' in the `results` object represent?
Asked by:
54 Viewed 54 Answers

Answer (54)

Best Answer
(362)
In `statsmodels`, `results.bse` is a list containing the standard errors for each coefficient in the regression model. The index of the list corresponds to the coefficient (e.g., the first element represents the intercept, the second the slope of x, etc.). Therefore, `results.bse[1]` gives you the standard error of the slope coefficient for the 'x' variable.