clusterify(Rssa)
clusterify()所属R语言包:Rssa
Automatic grouping of the elementary series
自动分组的基本系列
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Try to perform the grouping step of the SSA via clusterization.
尝试通过聚类化的SSA进行分组步骤。
用法----------Usage----------
## S3 method for class 'ssa'
clusterify(this, groups, nclust = length(groups) / 2,
...,
type = c("wcor"), cache = TRUE)
参数----------Arguments----------
参数:this
SSA object.
SSA对象。
参数:groups
list of integer vectors, initial set of elementary series' groups.
小学系列“组的整数向量,初始设置。
参数:nclust
integer, desired number of output series
整数,所需数量的输出系列
参数:...
further arguments passed to clusterization methods.
进一步的参数传递给聚类化的方法。
参数:type
algorithm of clusterization, see 'Details' for more info.
算法的聚类化,请参阅“详细信息”的详细信息。
参数:cache
logical, if 'TRUE' then the results of the intermediate calculations are saved and reused as much as possible.
逻辑,如果“TRUE”,然后在中间计算的结果被保存,并尽可能地重用
Details
详细信息----------Details----------
Right now the only clusterization method is supported: use of w-correlation matrix as the dissimilarity matrix. Standard hclust routine is used to perform the grouping of the elementary series.
现在唯一的聚类化方法是:使用W-相关矩阵相异度矩阵。标准hclust例程用于初级系列来执行分组。
值----------Value----------
List of integer vectors holding the indices of the elementary series forming each grouped series
保持初级系列的指数,其中,形成每个分组序列的整数向量列表
参见----------See Also----------
hclust, wcor, decompose
hclust,wcor,decompose
实例----------Examples----------
# Decompose 'co2' series with default parameters[分解的CO2系列使用默认参数]
s <- new.ssa(co2)
# Form 5 series out of initial 10:[形成5大系列的最初10:]
l <- clusterify(s, groups = 1:10)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|