Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是使用 blogdown 创建的博客文章
R 代码块以
```{r, echo = FALSE, message = FALSE, warning = FALSE}
但是,每次我使用 shapefile 读取时,都会出现三条消息sf::st_read
sf::st_read
如何防止这些消息出现在帖子中?
答案是否在此页面中关于 knitr 选项?
将最初发布在评论中的明显解决方案移至完整答案。此元讨论中概述的推理
我认为st_read只是正常打印输出,这不会受message = FALSEor影响warning = FALSE。如果您不需要块的任何输出,您可以results = 'hide'在块选项中执行,否则我认为您可以使用停止打印st_read(..., quiet = TRUE)
st_read
message = FALSE
warning = FALSE
results = 'hide'
st_read(..., quiet = TRUE)
最初由Marius在评论中发表