Centralize library loading in 00_paths.R to suppress dplyr startup messages

This commit is contained in:
2026-03-09 14:34:43 -04:00
parent d0a49ba45b
commit 8a30fe338e
19 changed files with 68 additions and 17 deletions

View File

@@ -2,7 +2,15 @@
# Central path constants and config. Source this at the top of every script.
# All paths are relative to the project root.
dotenv::load_dot_env(".env")
suppressPackageStartupMessages({
library(dotenv)
library(tibble)
library(readr)
library(tidyr)
library(dplyr)
})
load_dot_env(".env")
euro_to_dollar_conversion_ratio <- as.numeric(Sys.getenv("euro_to_dollar_conversion_ratio"))
input_cols <- as.integer(Sys.getenv("input_cols"))