wcor(Rssa)
wcor()所属R语言包:Rssa
Calculate the W-correlation matrix
计算在W-相关矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Function calculates the W-correlation matrix for the series.
功能计算出该系列的W-相关矩阵。
用法----------Usage----------
## S3 method for class 'ssa'
wcor(X, groups, ..., cache = TRUE)
## Default S3 method:[默认方法]
wcor(X, L = (N + 1) %/% 2, ...)
参数----------Arguments----------
参数:X
the input object. This might be ssa object for ssa method, or just a matrix with elementary series in columns for default implementation.
输入对象。这可能是SSA SSA的方法,或者只是一个矩阵列基础系列中的默认实现对象。
参数:L
window length.
窗口长度。
参数:groups
list of numeric vectors, indices of elementary series used for reconstruction.
列表中的数值变量,用于重建小学系列指数。
参数:...
further arguments passed to reconstruct routine.
进一步的参数传递给reconstruct常规。
参数:cache
logical, if 'TRUE' then intermediate results will be cached in 'ssa' object.
逻辑,如果TRUE,然后中间结果将被缓存在SSA的对象。
Details
详细信息----------Details----------
W-correlation matrix is a standard way of checking for weak separability between the elementary time series (see Golyandina et all, 2001 for more information). The function calculates such a matrix either directly from 'ssa' object or from the matrix of elementary series.
W-相关矩阵是一个标准的基本时间序列(见,2001年Golyandina等所有信息)之间的弱可分性的检查方式。该函数计算这样一个矩阵,既可以直接从“磺基水杨酸对象或从矩阵的基本系列。
值----------Value----------
Object of type 'wcor.matrix'.
对象类型“wcor.matrix。
参考文献----------References----------
Time Series Structure: SSA and related techniques. Chapman and Hall/CRC. ISBN 1584881941
参见----------See Also----------
reconstruct
reconstruct
实例----------Examples----------
# Decompose co2 series with default parameters[分解CO2系列使用默认参数]
s <- new.ssa(co2)
# Calculate the w-correlation matrix between first 10 series[计算前10系列W-之间的相关系数矩阵]
w <- wcor(s, groups = 1:10)
print(w)
plot(w)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|