alr(robCompositions)
alr()所属R语言包:robCompositions
Additive log-ratio transformation
添加剂对数比改造
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The alr transformation moves D-part compositional data from the simplex into a (D-1)-dimensional real space.
的ALR转换移动到(D-1)维实空间中的D部分的成分数据从单纯形。
用法----------Usage----------
alr(x, ivar=ncol(x))
参数----------Arguments----------
参数:x
D-part compositional data
D-部分组成数据
参数:ivar
Rationing part
配给的一部分
Details
详细信息----------Details----------
The compositional parts are divided by the rationing part before the logarithm is taken.
组成部分划分的配给部分的对数之前。
值----------Value----------
A list of class “alr” which includes the following content:
类别“ALR”的名单,其中包括以下内容:
参数:x.alr
the transformed data
变换后的数据
参数:varx
the rationing variable
配给变量
参数:ivar
the index of the rationing variable, indicating the column number of the rationing variable in the data matrix x
配给变量的索引,表示在数据矩阵x的配给变量的列数
参数:cnames
the column names of x
列名的x
The additional information such as cnames or ivar is usefull when a back-transformation is applied on the "same" data set.
变换的背面上施加的“相同”的数据集时,是有用的附加信息,如CNAME记录做到这点或的ivar。
(作者)----------Author(s)----------
Matthias Templ
参考文献----------References----------
Data Monographs on Statistics and Applied Probability. Chapman \& Hall Ltd., London (UK). 416p.
参见----------See Also----------
invalr, ilr, alr
invalr,ilr,alr
实例----------Examples----------
data(arcticLake)
x <- arcticLake
x.alr <- alr(x, 2)
y <- invalr(x.alr)
## This exactly fulfills:[#这完全履行:]
invalr(alr(x, 3))
data(expenditures)
x <- expenditures
y <- invalr(alr(x, 5))
head(x)
head(y)
## --> absolute values are preserved as well.[# - >绝对值是受保护的。]
## preserve only the ratios:[#只保留比率:]
invalr(x.alr, ivar=2, useClassInfo=FALSE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|