prints a stylized CLI box containing a list of parameters and their values to the console. It is designed for logging configuration settings at the start of a script or process.
Examples
if (FALSE) { # \dontrun{
config <- list(
date = "2023-10-27",
model = "XGBoost",
iterations = 100,
verbose = TRUE
)
params_box(config)
} # }
