CSlideCluster {funtimes} | R Documentation |
Slide-Level Time Series Clustering
Description
Cluster time series at a slide level, based on Algorithm 1 of Ciampi et al. (2010).
Usage
CSlideCluster(X, Alpha = NULL, Beta = NULL, Delta = NULL, Theta = 0.8)
Arguments
X |
a matrix of time series observed within a slide (time series in columns). |
Alpha |
lower limit of the time series domain. Default is
|
Beta |
upper limit of the time series domain.
Default is |
Delta |
closeness parameter, a real value in |
Theta |
connectivity parameter, a real value in |
Value
A vector of length ncol(X)
with cluster labels.
Author(s)
Vyacheslav Lyubchich
References
Ciampi A, Appice A, Malerba D (2010). “Discovering trend-based clusters in spatially distributed data streams.” In International Workshop of Mining Ubiquitous and Social Environments, 107–122.
See Also
CSlideCluster
, CWindowCluster
,
and BICC
Examples
set.seed(123)
X <- matrix(rnorm(50), 10, 5)
CSlideCluster(X)