Learn R Programming

thisutils (version 0.3.1)

get_verbose: Get the verbose option

Description

Get the verbose option from the global options or the local argument.

Usage

get_verbose(verbose = NULL)

Value

The verbose option.

Arguments

verbose

The verbose option. Default is `NULL`, which means to get the verbose option from the global options.

Examples

Run this code
get_verbose()
get_verbose(verbose = FALSE)
get_verbose(verbose = TRUE)

options(log_message.verbose = FALSE)
get_verbose()
get_verbose(verbose = TRUE)

options(log_message.verbose = TRUE)
get_verbose()

options(log_message.verbose = NULL)

Run the code above in your browser using DataLab