标签: r linear-regression
我想用我的预测来预测:
> fit <- lm(c(3008, 10717) ~ c(69, 247)) > 69 * coef(fit)[2] + coef(fit)[1] c(69, 247) 3008 >
是否有更简单的方法需要更少的代码,例如
> use_lm(fit, 69) 3008