插补错误:sample.int(length(x)、size、replace、prob) 中的错误:第一个参数无效

发布于 2025-01-12 16:27:47 字数 217 浏览 0 评论 0原文

我正在尝试运行以下代码来估算数据:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野心澎湃 2025-01-19 16:27:47

如果不查看数据示例或摘要,就很难判断问题所在。这可能是由于您的列之一是意外的数据类型引起的 - 我相信 missForest 期望所有数字列。

另一个潜在的问题是 df 的格式 - 它是 data.frame、matrix、tibble?这有帮助吗:

df <- as.data.frame(df)
df_imp <- missForest(df)

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:

df <- as.data.frame(df)
df_imp <- missForest(df)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文