包含 47 个 obs 和 5 个变量的数据集(男性编码为 0,女性编码为 1)试图预测具有平均地位、收入和语言的男性将花费 95% CI。
我用我lm<-spending ~ status + income + verbal + sex, teenspend
的来获得平均值。我发现我的系数为:
mdl$coefficient
(Intercept) sexfemale status income
22.55565063 -22.11833009 0.05223384 4.96197922
verbal
-2.95949350
predict(mdl, sex=0, interval='confidence', level=0.90)
一些问题:我使用了上述预测,但我得到了所有的观察结果,我如何找到我的预测?
fit lwr upr
1 -10.6507430 -21.4372267 0.1357407
2 -9.3711318 -21.9428731 3.2006095
3 -5.4630298 -15.0782882 4.1522286
4 24.7957487 12.5630143 37.0284831
请说清楚?