grouping.auto.wcor | R Documentation |
Group elemenatry series automatically via the hierarchical clustering with w-correlation matrix as a proximity matrix
## S3 method for class 'ssa'
grouping.auto.wcor(x, groups, nclust = length(groups) / 2, ...)
x |
SSA object |
groups |
list of numeric vectors, indices of elementary components used for reconstruction |
nclust |
integer, desired number of output series |
... |
further arguments passed to |
Standard hclust
routine is used to perform the grouping
of the elementary components. See Algorithm 2.15 in Golyandina et al (2018) for details.
List of integer vectors holding the indices of the elementary components forming each grouped objects
Golyandina N., Korobeynikov A., Zhigljavsky A. (2018): Singular Spectrum Analysis with R. Use R!. Springer, Berlin, Heidelberg.
hclust
, wcor
# Decompose 'co2' series with default parameters
s <- ssa(co2)
# Form 3 series from the initial 6 ones:
lst <- grouping.auto(s, grouping.method = "wcor",
groups = 1:6, nclust=3)
# Automatic grouping:
print(lst)
plot(lst)
# Check separability
w <- wcor(s, groups = lst)
plot(w)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.