unmixR uses settings for option management.
unmixR.options(...)
either key = value
pairs to set options or the names of
the options to retrieve. If no parameters are passed, a list of all
options is returned.
Either a list of current options or the value of a requested option.
The following package-specific options are defined:
Indicates how much debuging output is to be produced. A value of 1 reports on the overall progress of identifying the endmembers. Values > 1 give additional details about the internal processing.
(default: "package:unmixR"
)
Environments which to search for unmixing algorithm implementations.
implementation.search
: register packages providing additional implementations by appending "package:packagename"
.
Implementations. The global environment can be added as ".GlobalEnv"
.
unmixR.options () # show all options
#> $debuglevel
#> [1] 0
#>
#> $implementation.search
#> [1] "package:unmixR"
#>
unmixR.options ("debuglevel") # show just this one option
#> [1] 0
unmixR.options (debuglevel = 0L) # set an option