如果从模型中删除因子交互,则 stargazer 包的“观察”似乎是不正确的:
这是使用 R 的内置数据集的问题:
data(mtcars)
names(mtcars)
mtcars$gear.f = as.factor(mtcars$gear) # create two sets of factors
mtcars$carb.f = as.factor(mtcars$carb)
fit.1 <- lm(mpg ~ gear.f*carb.f, data=mtcars)
stargazer(fit.1) # Observations is listed as 39 instead of 32
有谁知道为什么会发生这种情况或如何回避它?