getOption {base} | R Documentation |
Allow the user to set and examine a variety of global options which affect the way in
which R computes and displays its results.
getOption(x,
default = NULL);
Invoking options() with no arguments returns a list with the current values of the options. Note that not all options listed below are set initially. To access the value of a single option, one should use, e.g., getOption("width") rather than options("width") which is a list of length one.
For getOption, the current value set for option x, or default (which defaults to NULL) if the option is unset.