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))

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.