This function turns on verbose mode, enabling additional informational output. It is useful when you want to receive detailed information about the progress of certain operations.

verbose_on()

Value

The function has no explicit return value.

Details

Verbose mode is designed to provide detailed information during the execution of a function or operation. By calling verbose_on, you can enable this additional output.

The options("Rapi_verbose" = TRUE) line sets the verbose option to TRUE, allowing functions to produce more detailed messages.

See also

verbose_off: Turn off verbose mode.

Examples

verbose_on()
#> Verbose mode is now ON.You will receive additional information during function execution.