在使用MICE程序包對R進行插補之後,我想要生成應急表。適合顯示列表中的表,但如果我pool()他們,將引發以下錯誤:Error in pool(fit) : Object has no coef() method.我做錯了什麼? 這個簡單的例子重現錯誤: library("mice")
imp <- mice(nhanes)
fit <- with(imp, table(bmi, hyp)
所以我有一個包含很多缺失值的數據集。我想分離不同丟失模式的數據。我發現了包裝中的'老鼠',在總結缺失值模式時非常方便。但是,當我想選擇具有某種缺失模式的行時,選定行的數量遠少於缺少模式矩陣所建議的數量。 我的代碼如下。 要獲得丟失的模式: library(mice)
# md.pattern returns a matrix, I convert the matrix into a data f