ccdr_options {ccdR} | R Documentation |
ccdr Options
Description
ccdr stores options as a named list in R's global options, i.e.
getOption('ccdr')
. It currently stores two such options, one for CCTE
credentialing and one to suppress private API information in the URLs printed
to the screen when web queries are placed. For both of those, see
register_ccdr()
.
Usage
set_ccdr_option(...)
has_ccdr_options()
has_ccdr_option(option)
Arguments
... |
a named listing of options to set |
option |
a specific option to query, e.g. |
Value
-
set_ccdr_option()
does not have a return value but has the side effect of setting options used by other functions. -
has_ccdr_option()
returns a Boolean. -
has_ccdr_options()
returns a Boolean.
See Also
Examples
# Set ccdr options
set_ccdr_option('display_api_key' = FALSE)
# Check if there are options registered to 'ccdr'
has_ccdr_options()
# Check if a specific option is registered for 'ccdr'
has_ccdr_option('display_api_key')
[Package ccdR version 1.1.0 Index]