示例数据:
ID sum a b c
11 2324 1 0 2
22 2242 4 1 3
33 4328 5 6 7
我进行了线性多元回归并计算了厨师的距离。但是,在此过程中,发现并删除了3个na。
fit <- step(lm (Sum~
a
+b
+c
)
na.action=na.omit
), direction="backward")
我尝试过“with”:
window()
with(data, plot (ID, cooks.distance(fit)))
par(opar)
得到了这个:
Error in xy.coords(x, y, xlabel, ylabel, log) :
'x' and 'y' lengths differ
这是因为na的。有解决方案吗 谢谢。