R : knnImputation Giving Error

那年仲夏 提交于 2019-12-04 13:06:22

See my previous answer

I came into the problem today,and I found that we should transform our tbl object into data.frame object!!This is one disgusting point that different packages do not have compatibility.

#check your df class,I think your df is actually as tbl object
class(df)
df_new <- as.data.frame(df)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!