Learn R Programming

Rssa (version 0.13-1)

grouping.auto.wcor: Group Elementary Series Using W-correlation Matrix

Description

Group elemenatry series automatically via the hierarchical clustering with w-correlation matrix as a proximity matrix

Usage

"grouping.auto.wcor"(x, groups, nclust = length(groups) / 2, ...)

Arguments

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 hclust

Value

List of integer vectors holding the indices of the elementary components forming each grouped objects

Details

Standard hclust routine is used to perform the grouping of the elementary components.

See Also

hclust, wcor

Examples

Run this code
# 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)

Run the code above in your browser using DataLab