我使用500个值的数据集进行工作,我有10个不同的变量,其中35%随机丢失。为此,我决定用老鼠来估算它们。我用了这段代码
md.pattern(df)
p <- md.pairs(df);p
pbox(df,pos=1,int = FALSE, cex=0.7)
imp<- mice(df)
我收到此消息
iter imp variable
1 1 AgeError in solve.default(xtx + diag(pen)) :
system is computationally singular: reciprocal condition number = 1.00504e-16
您能告诉我我在这里做错了什么以及如何解决这些问题
谢谢