Skip to contents

A wrapper for debugging options.

Usage

debug_opt(
  opt = c("shallow", "deep", "nrow", "row", "aggregate", "geo"),
  val = NULL
)

Arguments

opt

Debug options

val

Value options

Details

Options available:

  • "shallow" : Show the executed funcitons in the process flow

  • "deep" : Show deeper including helper functions in the process flow

  • "nrow" : For orgdata.debug.nrow. Default value is 20 if val argument is missing

  • "row" : For orgdata.debug.rows. Default value is 1:50 if val argument is missing

  • "aggregate" : Activating orgdata.debug.aggregate

  • "geo" : Activating orgdata.debug.geo

Examples

if (FALSE) { # \dontrun{
debug_opt("geo")
debug_opt("nrow", 30)
} # }