FUN中的错误(newX [,i],...):'x'必须是数字:使用鼠标时

时间:2016-11-22 21:32:13

标签: r r-mice

我试图估算缺失的值,所以我尝试使用鼠标包。我的数据如下:

ID     Date        DayNum      Day       Hour       Transaction
1    07/01/16        1          6         0             20 
1    07/01/16        1          6         1             30
1    07/01/16        1          6         2             NA
1    07/01/16        1          6         3             NA
1    07/01/16        1          6         4             39
1    07/01/16        1          6         5             10
1    07/01/16        1          6         6             54

正如您所看到的,我有NA值,并希望使用R中的鼠标包来对它们进行估算。

假设我的数据框被称为df1,我输入了以下代码,我收到了错误

imputed_Data <- mice(df1, m=5, maxit = 50, method = 'pmm', seed = 500)
summary(imputed_Data) 

Error in FUN(newX[, i], ...) : 'x' must be numeric
In addition: Warning message:
In FUN(newX[, i], ...) : NAs introduced by coercion

另请注意:Daynum和Day对我没用,所以我稍后会删除它们。

ID   Date     Hour Transaction
1  2016-07-01  4   62
1  2016-07-01  5   78
1  2016-07-01  6   879
1  2016-07-01  7   67
1  2016-07-01  8   10
1  2016-07-01  9   11
1  2016-07-01  10  14
1  2016-07-01  11  NA  

0 个答案:

没有答案