getN(scape)
getN()所属R语言包:scape
Extract Sample Size
提取样本大小
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extract the sample size that was used in a model, from catch-at-age or catch-at-length data.
提取模型中使用的样本大小,从追赶,年龄或追赶长度的数据。
用法----------Usage----------
getN(model, what="CAc", series=NULL, digits=NULL)
参数----------Arguments----------
参数:model
fitted scape model containing catch-at-age and/or catch-at-length data.
安装scape模型包含追赶年龄和/或赶上长度的数据。
参数:what
name of model element: "CAc", "CAs", "CLc", or "CLs".
模型元素的名称:"CAc","CAs","CLc"或"CLs"。
参数:series
vector of strings indicating which gears or surveys to analyze (all by default).
向量的字符串表示的齿轮或调查分析(默认情况下)。
参数:digits
number of decimal places to use when rounding, or NULL to suppress rounding.
使用时,四舍五入,或NULL抑制四舍五入的小数位数。
值----------Value----------
Numeric vector of year-specific sample sizes, or a list of such vectors when analyzing multiple series.
数字矢量年具体的样本量,这种向量进行分析时,多系列的列表。
注意----------Note----------
Thin wrapper to access model$element$SS, providing a uniform interface with other get* and est* functions.
薄壁包装器来访问model$element$SS,提供一个统一的接口与其他get*和est*函数。
See discussion in the estN documentation.
estN文件的讨论。
参见----------See Also----------
getN, getSigmaI, getSigmaR, estN, estSigmaI, and estSigmaR extract and estimate sample sizes and sigmas.
getN,getSigmaI,getSigmaR,estN,estSigmaI和estSigmaR提取和估计的样本量和逐步改善。
scape-package gives an overview of the package.
scape-package给出了一个概述的包。
实例----------Examples----------
## Exploring candidate sample sizes:[#探索候选样本大小:]
getN(x.sbw) # sample sizes used in assessment: number of tows[样本量用于评估:一些拖]
estN(x.sbw) # effective sample size, given data (tows) and model fit[有效样本量,给定的数据(拖)和模型的拟合]
## Multiple series:[#多个系列:]
getN(x.ling, "CLc") # sample size used in assessment[用于评估的样本量]
getN(x.ling, "CLc", digits=0) # rounded[四舍五入]
estN(x.ling, "CLc") # model fit implies larger sample sizes[模型的拟合意味着更大的样本量]
getN(x.ling, "CLc", series="1", digits=0) # get one series[得到一个系列]
estN(x.ling, "CLc", series="1") # estimate one series[估计一个系列]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|