Suppress Tidyverse Start-Up Messages

When running R code that uses the tidyverse package, the output always includes startup messages.

To suppress these package startup messages, include the following line of code at the very top of your R code file:

suppressPackageStartupMessages(library(tidyverse))