clr(robCompositions)
clr()所属R语言包:robCompositions
Centred log-ratio transformation
为中心的数比改造
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The clr transformation moves D-part compositional data from the simplex into a D-dimensional real space.
CLR的转换D-部分组成从单纯的数据移动到一个D维的空间。
用法----------Usage----------
clr(x)
参数----------Arguments----------
参数:x
multivariate data ideally of class data.frame or matrix
最好的数据框或矩阵类的多元数据
Details
详细信息----------Details----------
Each composition is divided by the geometric mean of its parts before the logarithm is taken.
每个组合物,其各部分的几何平均值除以之前采取的对数。
值----------Value----------
The transformed data, including
变换后的数据,包括
参数:x.clr
clr transformed data
CLR转换后的数据
参数:gm
the geometric means of the original composition.
原来的组合物的几何平均数。
注意----------Note----------
The resulting transformed data set is singular by definition.
将得到的变换后的数据集,根据定义是奇异的。
(作者)----------Author(s)----------
Matthias Templ
参考文献----------References----------
Data Monographs on Statistics and Applied Probability. Chapman \& Hall Ltd., London (UK). 416p.
参见----------See Also----------
invclr, alr, ilr, invalr, invilr
invclr,alr,ilr,invalr,invilr
实例----------Examples----------
data(expenditures)
eclr <- clr(expenditures)
inveclr <- invclr(eclr)
head(expenditures)
head(inveclr)
head(invclr(eclr$x.clr))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|