bound.parameters(scaRabee)
bound.parameters()所属R语言包:scaRabee
Forces parameter estimates between defined boundaries.
力参数估计值之间定义的边界。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
bound.parameters is a utility function called during estimation runs. It forces the parameter estimates to remain within the boundaries defined in the .csv file of initial estimates. bound.parameters is typically not called directly by users.
bound.parameters是一个效用函数在估算过程中运行。它迫使参数估计的初步估计。csv文件中定义的边界内。 bound.parameters通常不直接调用用户。
用法----------Usage----------
bound.parameters(x = NULL,
lb = NULL,
ub = NULL)
参数----------Arguments----------
参数:x
A vector of p parameter estimates.
p参数的矢量估计。
参数:lb
A vector of p lower boundaries.
一个向量的p下限。
参数:ub
A vector of p upper boundaries.
一个向量的p上的界限。
值----------Value----------
Returns a vector of p values. The ith element of the returned vector
返回的p值的向量。返回的向量的第i个元素的
x[i] if lb[i] < x[i] < ub[i]
×[我]如果英镑[I] <x [i]的<UB [我]
lb[i] if x[i] <= lb[i]
英镑[I],如果x [I] <= LB [I]
ub[i] if ub[i] <= x[i]
UB [我]如果UB [I] <= X [I]
(作者)----------Author(s)----------
Sebastien Bihorel (<a href="mailto:sb.pmlab@gmail.com">sb.pmlab@gmail.com</a>)
实例----------Examples----------
bound.parameters(seq(1:5), lb=rep(3,5), ub=rep(4,5))
# The following call should return an error message[下面的调用应该返回一个错误消息]
bound.parameters(1, lb=rep(3,5), ub=rep(4,5))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|