logoff(VGAM)
logoff()所属R语言包:VGAM
Log link function with an offset
登录链接功能的偏移量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the log transformation with an offset, including its inverse and the first two derivatives.
计算对数转换的偏移量,包括它的逆和前两个衍生工具。
用法----------Usage----------
logoff(theta, earg = list(offset=0), inverse = FALSE, deriv = 0,
short = TRUE, tag = FALSE)
参数----------Arguments----------
参数:theta
Numeric or character. See below for further details.
数字或字符。请参阅下面进一步的细节。
参数:earg
List. Extra argument for passing in additional information. The offset component of the list earg is the offset value. See Links for general information about earg.
列表。额外的信息传递额外的参数。 offset组件的列表中earg是偏移值。见Links的一般信息,关于earg。
参数:inverse
Logical. If TRUE the inverse function is computed.
逻辑。如果TRUE的逆函数计算。
参数:deriv
Order of the derivative. Integer with value 0, 1 or 2.
订购的衍生工具。值0,1或2的整数,带。
参数:short
Used for labelling the blurb slot of a vglmff-class object.
用于标签blurb插槽的vglmff-class对象。
参数:tag
Used for labelling the linear/additive predictor in the initialize slot of a vglmff-class object. Contains a little more information if TRUE.
用于标注线性/对添加剂的预测在initialize插槽的vglmff-class对象。如果TRUE包含了一些信息。
Details
详细信息----------Details----------
The log-offset link function is very commonly used for parameters that are greater than a certain value. In particular, it is defined by log(theta+offset) where offset is the offset value. For example, if offset=0.5 then the value of theta is restricted to be greater than -0.5.
log偏移量的链接功能是非常常用的参数是大于一定值。特别是,它被定义为log(theta+offset)其中offset是偏移值。例如,如果offset=0.5,然后theta的值被限制为大于-0.5。
Numerical values of theta close to -offset or out of range result in Inf, -Inf, NA or NaN. The arguments short and tag are used only if theta is character.
数值theta接近-offset或超出范围的结果在Inf,-Inf,NA或NaN。的参数short和tag只有theta是字符。
值----------Value----------
For deriv = 0, the log of theta+offset, i.e., log(theta+offset) when inverse = FALSE, and if inverse = TRUE then exp(theta)-offset.
对于deriv = 0“的logtheta+offset,即log(theta+offset)inverse = FALSE,并如果inverse = TRUEexp(theta)-offset的。
For deriv = 1, then the function returns d theta / d eta as a function of theta if inverse = FALSE, else if inverse = TRUE then it returns the reciprocal.
对于deriv = 1,则该函数返回Dtheta / Deta的函数,theta如果inverse = FALSE如果inverse = TRUE然后它返回的倒数。
Here, all logarithms are natural logarithms, i.e., to base e.
在这里,所有对数的自然对数,即以e为底。
注意----------Note----------
The default means this function is identical to loge.
默认情况下此功能是相同loge。
Numerical instability may occur when theta is close to -offset.
数值不稳定时可能会出现theta是-offset。
(作者)----------Author(s)----------
Thomas W. Yee
参考文献----------References----------
Generalized Linear Models, 2nd ed. London: Chapman & Hall.
参见----------See Also----------
Links, loge.
Links,loge。
实例----------Examples----------
## Not run: [#不运行:]
logoff(seq(-0.2, 0.5, by=0.1))
logoff(seq(-0.2, 0.5, by=0.1), earg=list(offset=0.5))
log(seq(-0.2, 0.5, by=0.1) + 0.5)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|