To set and examine global options for scaleboot package.
sboptions(x, value)
Arguments
x: character of an option name.
value: When specified, this value is set.
Details
Invoking sboptions() with no arguments returns a list with the current values of the options. Otherwise it returns option(s) with name(s) specified by x. When value is specified, it is set to the option named x.
Author(s)
Hidetoshi Shimodaira
Examples
sboptions()# show all the optionssboptions("models")# show the default model namesnew.models <- sbmodelnames(m=1:2)# character vector c("poly.1","poly.2")old.models <- sboptions("models",new.models)# set the new model namessboptions("models")# show the default model namessboptions("models",old.models)# set back the default valuesboptions("models")# show the default model names