Answers for "how to load multiple packages in R"

0

load multiple packages in r

x <- c("dplyr", "ggplot2", "spatstat")
lapply(x, require, character.only = TRUE)
Posted by: Guest on June-29-2021

Code answers related to "how to load multiple packages in R"

Browse Popular Code Answers by Language