📜  r rlm 模型得到标准错误 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:02.959000             🧑  作者: Mango

代码示例1
# fitting a linear model
fit = lm(y ~ x)

# get vector of all standard errors of the coefficients
coef(summary(fit))[, "Std. Error"]