Joseph Moraine
Joseph Moraine

Reputation: 23

Evaluating code but suppressing output in RMarkdown

I have a chuck

 ```{r}
Item <- melt(Item)
```

Which creates an output :

   ## Using as id variables

How do I evaluate the code but suppress this output.

Upvotes: 0

Views: 67

Answers (1)

Learner
Learner

Reputation: 75

{r, warning=FALSE, message=FALSE}
Item <- melt(Item)

Details are documented here : https://www.rstudio.com/wp-content/uploads/2015/02/rmarkdown-cheatsheet.pdf

Upvotes: 1

Related Questions