插补错误:sample.int(length(x)、size、replace、prob) 中的错误:第一个参数无效
我正在尝试运行以下代码来估算数据:
df_imp <- missForest(df)
我收到以下错误:
Error in sample.int(length(x), size, replace, prob) :
invalid first argument
为什么会发生这种情况?
I am trying to run the following code to impute data:
df_imp <- missForest(df)
I get the following error:
Error in sample.int(length(x), size, replace, prob) :
invalid first argument
Why is this happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果不查看数据示例或摘要,就很难判断问题所在。这可能是由于您的列之一是意外的数据类型引起的 - 我相信 missForest 期望所有数字列。
另一个潜在的问题是 df 的格式 - 它是 data.frame、matrix、tibble?这有帮助吗:
It's difficult to tell what the issue is without seeing a sample or summary of your data. It could be caused by one of your columns being an unexpected data type - I believe missForest expects all numerical columns.
Another potential issue is the format of your
df
- is it a data.frame, matrix, tibble? Does this help: