New to RStudio. Is there a way to efficiently load libraries in scripts so I don’t have to write out the names of the packages for every new script like this…
library(‘ggplot2‘)
library(‘dplyr‘)
library(‘lubridate‘)
library(‘tidyr‘)
library(‘stringr‘)
And so on. Thanks in advance.