0

我正在尝试建立一个具有交互作用的线性回归模型,以基于 Petal.Length 和来自 iris 的 Species 来预测 Sepal.Length。出于某种原因,我的模型的输出只显示了三个 Species 中的两个。

代码:

mod1=lm(Sepal.Length~Petal.Length*Species,data=iris)
summary(mod1)$coef

输出:

                               Estimate Std. Error   t value     Pr(>|t|)
(Intercept)                     4.2131682  0.4074209 10.341071 4.331619e-19
Petal.Length                    0.5422926  0.2767667  1.959385 5.199902e-02
Speciesversicolor              -1.8056451  0.5984284 -3.017312 3.016413e-03
Speciesvirginica               -3.1535091  0.6340741 -4.973408 1.846894e-06
Petal.Length:Speciesversicolor  0.2859884  0.2950624  0.969247 3.340471e-01
Petal.Length:Speciesvirginica   0.4534460  0.2901455  1.562823 1.202893e-01

我不知道为什么其他物种没有出现。

4

0 回答 0