I'm trying to store the standard errors from some regressions I ran in R.
I already know that when storing the coefficients I can just go:
beta1 <- coefficients(regression)["x"]
But how would I replicate this for the standard errors in the same regression?