hide messages in RMD
If you write Rmd file, the messages are always very disturbing. There are two methods to avoid it:
1. Global method
{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, warning = FALSE, message = FALSE)
2. Local method
suppressMessages(library(dplyr))