R - 为什么 verbose = FALSE 不适用于某些模型?

发布于 2025-01-11 11:46:26 字数 743 浏览 0 评论 0原文

我想省略以下模型输出给出的消息

library(caret)
library(pamr)

data(iris)

fit_pam <- train(Species ~ .,
                 data = iris,
                 method = "pam")

12345678910111213141516171819202122232425262728293011111111111111111111111111

但使用选项 verbose = FALSE 模型不会 工作。

fit_pam <- train(Species ~ .,
                 data = iris,
                 method = "pam",
                 verbose = FALSE)

并给出以下警告,例如无法识别该选项:

unused argument (verbose = FALSE)

我在其他模型中没有遇到此问题。

但是,如果可以使用 Rmarkdown 中的选项省略它,它也对我有用。 但是 {r message = FALSE, warning = FALSE} 当我编织时不起作用。

评论中的回答:

I want to omit the messages given by the following model

library(caret)
library(pamr)

data(iris)

fit_pam <- train(Species ~ .,
                 data = iris,
                 method = "pam")

output:

12345678910111213141516171819202122232425262728293011111111111111111111111111

But using the option verbose = FALSE the model does not work.

fit_pam <- train(Species ~ .,
                 data = iris,
                 method = "pam",
                 verbose = FALSE)

and gives the following warnings, like the option is not recognized:

unused argument (verbose = FALSE)

I don't have this problems with other models.

However, if this could be omitted with the options in Rmarkdown it would also work for me.
But {r message = FALSE, warning = FALSE} did not work when I knit.

Answer in the comments:

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我纯我任性 2025-01-18 11:46:26

使用 sink() 怎么样?

library(caret)
library(pamr)

data(iris)
sink(tempfile())
fit_pam <- train(Species ~ .,
                 data = iris,
                 method = "pam")
sink()

或者,在 RMarkdown 中,您可以使用 results='hide'

What about using sink()

library(caret)
library(pamr)

data(iris)
sink(tempfile())
fit_pam <- train(Species ~ .,
                 data = iris,
                 method = "pam")
sink()

Or, in RMarkdown, you could use results='hide'

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