Skip to contents

This function allows users to configure package-wide options, such as verbosity of output messages. It modifies the package's internal configuration state.

Usage

set_opts(force_verbose = FALSE)

Arguments

force_verbose

Logical, whether to force verbose output messages regardless of the interactive state. Defaults to FALSE

Value

NULL, modifies the package's internal configuration

Examples

# Enable verbose output
set_opts(force_verbose = TRUE)

# Disable verbose output
set_opts(force_verbose = FALSE)