Install and Launching R Packages

This code chunk install the basic tidyverse packages and load them onto RStudio environment.

packages = c('tidyverse')

for(p in packages){
  if(!require(p, character.only = T)){
    install.package(p)
  }
  library(p, character.only = T)  
}