嗨,我有以下降价块:
```{r, echo=FALSE,warning=FALSE,message=FALSE,error=FALSE}
lapply(obj,function(x) plot(x,main="some plot") box() axis(1,at=seq(0,25,by=1))
```
Run Code Online (Sandbox Code Playgroud)
输出是多个图.但是我也在图表下面的pdf文档中获得了控制台消息.
<Plot 1> nice plot 1!
<Plot 2> nice plot 2!
-- nasty horrible console output
## [[1]]
01.2882829
## [[2]]
120.29393933
Run Code Online (Sandbox Code Playgroud)
我已经尝试了echo/warning/error/message = FALSE,但这些都没有抑制控制台输出
请帮忙!