R - 为什么 verbose = FALSE 不适用于某些模型?
我想省略以下模型输出给出的消息
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
sink()
怎么样?或者,在 RMarkdown 中,您可以使用
results='hide'
What about using
sink()
Or, in RMarkdown, you could use
results='hide'