Centralize library loading in 00_paths.R to suppress dplyr startup messages
This commit is contained in:
@@ -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"))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user