sboptions(scaleboot)
sboptions()所属R语言包:scaleboot
Options for Multiscale Bootstrap
多尺度引导选项
译者:生物统计家园网 机器人LoveR
描述----------Description----------
To set and examine global options for scaleboot package.
设置和检查scaleboot包的全局选项。
用法----------Usage----------
sboptions(x, value)
参数----------Arguments----------
参数:x
character of an option name.
选项名称的字符。
参数:value
When specified, this value is set.
当指定,此值设置。
Details
详细信息----------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.
调用sboptions()不带任何参数,返回一个列表的选项的当前值。否则,它返回选项(S)与指定的x的名称(S)。当value指定,它被设置的选项名为x。
(作者)----------Author(s)----------
Hidetoshi Shimodaira
实例----------Examples----------
sboptions() # show all the options[显示所有的选项]
sboptions("models") # show the default model names[显示默认的型号名称]
new.models <- sbmodelnames(m=1:2) # character vector c("poly.1","poly.2")[字符向量c(“poly.1”,“poly.2”)]
old.models <- sboptions("models",new.models) # set the new model names[设置新的型号名称]
sboptions("models") # show the default model names[显示默认的型号名称]
sboptions("models",old.models) # set back the default value[重新设置的默认值]
sboptions("models") # show the default model names[显示默认的型号名称]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|