Skip to content

Instantly share code, notes, and snippets.

@jdtrat
jdtrat / flo_utilities.R
Created May 23, 2022 01:10
Precursor utilities for the `flo` R package for loading packages/R scripts
load_my_pkgs <- function(pkgs) {
for (i in seq_along(pkgs)) {
library(
pkgs[i], character.only = TRUE,
warn.conflicts = FALSE,
quietly = TRUE
)
}
}