distrEx (version 2.0.1)

distrExOptions: Function to change the global variables of the package `distrEx'

Description

With distrExOptions you can inspect and change the global variables of the package distrEx.

Usage

distrExOptions(...)
distrExoptions(...)
getdistrExOption(x)

Arguments

...
any options can be defined, using name = value or by passing a list of such tagged values.
x
a character string holding an option name.

Value

  • distrExOptions() returns a list of the global variables.\newlinedistrExOptions(x) returns the global variable x.\newlinegetdistrExOption(x) returns the global variable x.\newlinedistrExOptions(x=y) sets the value of the global variable x to y.

distrExoptions

For compatibility with spelling in package distr, distrExoptions is just a synonym to distrExOptions.

concept

  • global options
  • options

See Also

options, getOption

Examples

Run this code
distrExOptions()
distrExOptions("ElowerTruncQuantile")
distrExOptions("ElowerTruncQuantile" = 1e-6)
# or
distrExOptions(ElowerTruncQuantile = 1e-6)
getdistrExOption("ElowerTruncQuantile")

Run the code above in your browser using DataCamp Workspace