gpt4 book ai didi

r - 抑制 download.file 函数的错误消息

转载 作者:行者123 更新时间:2023-12-03 08:19:18 24 4
gpt4 key购买 nike

我想抑制 download.file 的错误消息Rmarkdown 文档中的函数。我试过results="hide",message=F,echo=F , 我试过 invisible , sink , suppressWarnings , suppressMessages , options(error = expression(NULL)) ,没有运气。
这是我的例子:

```{r,results="hide",message=F,echo=F}

tryCatch(download.file(paste0("https://www.kjqhfkpuc.es"),
destfile = paste0("report.pdf"),mode = "wb",quiet = T),error = function(e) e)


```

我不想在我的文档中输出

最佳答案

添加 options(warn = -1)到代码块的开头将全局禁止警告。但是,使用之前的警告设置重新打开警告通常是一个好主意。

```{r,results="hide",message=F,echo=F}

oldw <- getOption("warn")
options(warn = -1)
tryCatch(download.file(paste0("https://www.kjqhfkpuc.es"),
destfile = paste0("report.pdf"),mode = "wb",quiet = T),error = function(e) e)

options(warn = oldw)

```

this question

关于r - 抑制 download.file 函数的错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61311520/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com