我正在尝试将mice
R 中的包用于一个项目,并发现汇集的结果似乎改变了我为输出中的一个变量所拥有的虚拟代码。
详细地说,假设我有一个因子 ,foo
有两个级别:0
和1
。使用正则lm
通常会产生 的估计值foo1
。但是,使用mice
和函数会产生 的估计值。我在下面使用包中的数据集包含了一个可重现的示例。任何想法为什么可能会发生?pool
foo2
nhanes
mice
require(mice)
# Create age as: 0, 1, 2
nhanes$age <- as.factor(nhanes$age - 1)
head(nhanes)
# age bmi hyp chl
# 1 0 NA NA NA
# 2 1 22.7 1 187
# 3 0 NA 1 187
# 4 2 NA NA NA
# 5 0 20.4 1 113
# 6 2 NA NA 184
# Use a regular lm with missing data just to see output
# age1 and age2 come up as expected
lm(chl ~ age + bmi, data = nhanes)
# Call:
# lm(formula = chl ~ age + bmi, data = nhanes)
# Coefficients:
# (Intercept) age1 age2 bmi
# -28.948 55.810 104.724 6.921
imp <- mice(nhanes)
str(complete(imp)) # still the same coding
fit <- with(imp, lm(chl ~ age + bmi))
pool(fit)
# Now the estimates are for age2 and age3
# Call: pool(object = fit)
# Pooled coefficients:
# (Intercept) age2 age3 bmi
# 29.88431 43.76159 56.57606 5.05537