I am creating an R Markdown file for a report.
In a code chunk, I have written:
library("tidyverse")
I have tried the various options from this Stack Overflow question but I cannot seem to hide the following lines:
## v ggplot2 3.3.2 v purrr 0.3.4
## v tibble 3.0.4 v dplyr 1.0.2
## v tidyr 1.1.2 v stringr 1.4.0
## v readr 1.4.0 v forcats 0.5.0
and separately:
## -- Conflicts ------------------------------------------ tidyverse_conflicts() --
## x dplyr::filter() masks stats::filter()
## x dplyr::lag() masks stats::lag()
I have tried:
- results='markup'
- message="FALSE"
- warning="FALSE"
I want to show the code, but not the information that it returns.