ParamFamParameter(ROptEstOld)
ParamFamParameter()所属R语言包:ROptEstOld
Generating function for ParamFamParameter-class
ParamFamParameter级的生成功能
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generates an object of class "ParamFamParameter".
生成对象类"ParamFamParameter"。
用法----------Usage----------
ParamFamParameter(name, main = numeric(0), nuisance, trafo)
参数----------Arguments----------
参数:name
character string: name of parameter
字符串:参数名
参数:main
numeric vector: main parameter
数字向量:主要参数
参数:nuisance
numeric vector: nuisance paramter
数值向量:滋扰放慢参数
参数:trafo
matrix: transformation of the parameter
矩阵变换的参数
Details
详细信息----------Details----------
If name is missing, the default “"parameter of a parametric family of probability measures"” is used. If nuisance is missing, the nuisance parameter is set to NULL. The number of columns of trafo have to be equal and the number of rows have to be not larger than the sum of the lengths of main and nuisance. If trafo is missing, no transformation to the parameter is applied; i.e., trafo is set to an identity matrix.
name如果缺少,默认的“”参数一个参数族的概率措施“的”字。 nuisance如果丢失,滋扰参数设置为NULL。的列数trafo必须相等的行数必须是不大于的main和nuisance的长度的总和。 trafo如果丢失,没有改造的参数,trafo设置为单位矩阵。
值----------Value----------
Object of class "ParamFamParameter"
对象的类"ParamFamParameter"
(作者)----------Author(s)----------
Matthias Kohl <a href="mailto:Matthias.Kohl@stamats.de">Matthias.Kohl@stamats.de</a>
参见----------See Also----------
ParamFamParameter-class
ParamFamParameter-class
实例----------Examples----------
ParamFamParameter(main = 0, nuisance = 1, trafo = diag(c(1,2)))
## The function is currently defined as[#功能目前被定义为]
function(name, main = numeric(0), nuisance, trafo){
if(missing(name))
name <- "parameter of a parametric family of probability measures"
if(missing(nuisance))
nuisance <- NULL
if(missing(trafo))
trafo <- diag(length(main)+length(nuisance))
return(new("ParamFamParameter", name = name, main = main,
nuisance = nuisance, trafo = trafo))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|