最佳答案
我只是在寻找值的 B1(newx)
线性模型系数,而不是名称。我只想要0.5的值。我不想要“ newx”这个名字。
newx <- c(0.5,1.5,2.5)
newy <- c(2,3,4)
out <- lm(newy ~ newx)
out
看起来像:
Call:
lm(formula = newy ~ newx)
Coefficients:
(Intercept) newx
1.5 1.0
我来到这里,但现在我被困住了。
out$coefficients["newx"]
newx
1.0