powl(VGAM)
powl()所属R语言包:VGAM
Power Link Function
电源链接功能
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the power transformation, including its inverse and the first two derivatives.
计算功率变换,包括逆和前两个衍生物。
用法----------Usage----------
powl(theta, earg = list(power=1), 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. Here, the component name power denotes the power or exponent. This component name should not be abbreviated.
列表。额外的信息传递额外的参数。在这里,组件名称power表示电源或指数。该组件的名称应该是不能省略的。
参数: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 power link function raises a parameter by a certain value of power. Care is needed because it is very easy to get numerical problems, e.g., if power=0.5 and theta is negative.
电源连接功能提出了一个按一定的参数值的power。护理是必要的,因为它是很容易得到的数值问题,例如,如果power=0.5和theta是负的。
The arguments short and tag are used only if theta is character.
的参数short和tag只有theta是字符。
值----------Value----------
For powl with deriv = 0, then theta raised to the power of power. And if inverse = TRUE then theta raised to the power of 1/power.
对于powlderiv = 0,那么theta上升的力量power。而如果inverse = TRUE然后theta提高到1/power的力量。
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然后它返回的倒数。
注意----------Note----------
Numerical problems may occur for certain combinations of theta and power. Consequently this link function should be used with caution.
数值可能会出现问题的某些组合theta和power。因此应谨慎使用此链接功能。
(作者)----------Author(s)----------
Thomas W. Yee
参见----------See Also----------
Links, loge.
Links,loge。
实例----------Examples----------
powl("a", earg=list(power=2), short=FALSE, tag=TRUE)
powl(x <- 1:5)
powl(x, earg=list(power=2))
earg=list(power=2)
max(abs(powl(powl(x, earg=earg), earg=earg, inverse=TRUE) - x)) # Should be 0[应为0]
powl(x <- (-5):5, earg=list(power=0.5)) # Has NAs[有来港定居]
# 1/2 = 0.5[1/2 = 0.5]
pdat = data.frame(y = rbeta(n=1000, shape1=2^2, shape2=3^2))
fit = vglm(y ~ 1, beta.ab(lshape1="powl", lshape2="powl",
eshape1=list(power=0.5), i1=3,
eshape2=list(power=0.5), i2=7), pdat)
t(coef(fit, matrix=TRUE))
Coef(fit) # Useful for intercept-only models[仅截距模型]
vcov(fit, untrans=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|