logtrans(MASS)
logtrans()所属R语言包:MASS
Estimate log Transformation Parameter
估计数转换参数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Find and optionally plot the marginal (profile) likelihood for alpha for a transformation model of the form log(y + alpha) ~ x1 + x2 + ....
查找和选择绘制的α转换模型的形式log(y + alpha) ~ x1 + x2 + ...边际(资料)的可能性。
用法----------Usage----------
logtrans(object, ...)
## Default S3 method:[默认方法]
logtrans(object, ..., alpha = seq(0.5, 6, by = 0.25) - min(y),
plotit = TRUE, interp =, xlab = "alpha",
ylab = "log Likelihood")
## S3 method for class 'formula'[类formula的方法]
logtrans(object, data, ...)
## S3 method for class 'lm'
logtrans(object, ...)
参数----------Arguments----------
参数:object
Fitted linear model object, or formula defining the untransformed model that is y ~ x1 + x2 + .... The function is generic.
拟合线性模型的对象,或公式定义是y ~ x1 + x2 + ...未转换的模型。该功能是通用的。
参数:...
If object is a formula, this argument may specify a data frame as for lm.
如果object是一个公式,这个说法可能会指定作为lm的数据框。
参数:alpha
Set of values for the transformation parameter, alpha.
设置转换参数,α值。
参数:plotit
Should plotting be done?
应绘制完成吗?
参数:interp
Should the marginal log-likelihood be interpolated with a spline approximation? (Default is TRUE if plotting is to be done and the number of real points is less than 100.)
如果边际似然是插值与样条逼近吗? (默认为TRUE如果策划是必须要做的,真实点的数量小于100。)
参数:xlab
as for plot.
如plot。
参数:ylab
as for plot.
如plot。
参数:data
optional data argument for lm fit.
可选的data参数为lm合适。
值----------Value----------
List with components x (for alpha) and y (for the marginal log-likelihood values).
与组件列表x(α)和y(边际似然值)。
副作用----------Side Effects----------
A plot of the marginal log-likelihood is produced, if requested, together with an approximate mle and 95% confidence interval.
边际似然的一个图,如果要求,连同近似MLE和95%置信区间。
参考文献----------References----------
Modern Applied Statistics with S. Fourth edition. Springer.
参见----------See Also----------
boxcox
boxcox
举例----------Examples----------
logtrans(Days ~ Age*Sex*Eth*Lrn, data = quine,
alpha = seq(0.75, 6.5, len=20))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|