2017-09-27 42 views

回答

2

設置你的代碼塊有消息= FALSE:

```{r, message=FALSE} 
library(ROCR) 
``` 

你可以找到各種選項來操縱rmarkdown here的內部代碼塊。

0

更重要的是,使用這個作爲你的RMD文件第一

```{r nomessages, echo = FALSE} 
# set some default options for chunks 
knitr::opts_chunk$set(
    warning = FALSE, # avoid warnings and messages in the output 
    message = FALSE) 
```