Suppress library comments from output with knitr
Following Yihui's advice, I found the best option to be to invoke the warning=F
and message=F
chunk options, like so:
```{r, message=F, warning=F}
library(memisc)
```
This was using knitr ("Knit HTML") with RStudio to process R markdown.
Try the following code:
library(memisc, warn.conflicts = FALSE, quietly=TRUE)
or
suppressMessages(library(memisc, warn.conflicts = FALSE, quietly=TRUE))