2017-03-04 1 views
0

enter image description herermarkdown 의견 또는 rmarkdown 파일이 니트되면

비슷한는 제목 영역 후 뭔가가있다.

어떻게 제거 할 수 있습니까?

r 코드 청크에 "warning = FALSE, comment = NA"를 설정했지만 작동하지 않습니다. 다음과 같이

코드의 일부

은 다음과 같습니다

--- 
title: 'Validness Report by All Facilities' 
subtitle: '2017-01-03 to 2017-01-09' 
output: pdf_document 
geometry: margin=0.5in 
classoption: landscape 
documentclass: article 
--- 


```{r input, echo = FALSE, results = 'hide', cache = TRUE, 
warning=FALSE, comment=FALSE, error=FALSE} 

setwd("F:/") 
dfDataIn_valid2 <- read.csv("full_valid.csv", stringsAsFactors = FALSE) 
``` 


```{r validness, echo = FALSE, results = 'hide', 
cache = TRUE, warning=FALSE, comment=FALSE, error=FALSE} 



# Check if required packages are installed. If not, install them. 

packages <- c("rJava", "xlsxjars", "xlsx", "lubridate", "dplyr", "lazyeval") 
lapply(packages, library, character.only = TRUE) 

``` 
+0

생성 된 코드를 게시하십시오. –

+0

예, 저는 그들 중 핵심 부분을 첨부합니다. 나머지 코드는이 출력에 영향을주지 않는다고 생각합니다. – Bin

답변

0

당신이 필요로하는 덩어리 옵션 message 세트 또한

```{r, echo = FALSE, results = 'hide', cache = TRUE, warning=FALSE, comment=FALSE, error=FALSE, message=FALSE)} 

FALSE에, 당신은 각 청크에 대한 옵션을 반복 할 필요가 없습니다; 당신은 또한 첫 번째에 그들을 설정할 수 있습니다 :

```{r} 
library(knitr) 
opts_chunk$set(echo = FALSE, results = 'hide', cache = TRUE, warning=FALSE, comment=FALSE, error=FALSE, message=FALSE) 
```