We got a lm object from and want to extract the standard error
lm_aaa <- lm(aaa ~ x + y + z)
I know the function summary, names and coefficients.
However, summary seems to be the only way to manually access the standard error.
Have you any idea how I can just output se?
m$sigma
corresponds tosigma(fit)
, see here. I believe the question was really about the standard deviation of the individual coefficients. – Grantgranta