unmixR uses settings for option management.

unmixR.options(...)

Arguments

...

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.

Value

Either a list of current options or the value of a requested option.

Details

The following package-specific options are defined:

debuglevel

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.

implementation.search

(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".

Examples

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