cluster | R Documentation |
Perform cluster analysis of time series using their feature vectors
cluster(
data,
norm_method = c("zScore", "Sigmoid", "RobustSigmoid", "MinMax", "MaxAbs"),
unit_int = FALSE,
clust_method = c("kmeans", "hclust", "mclust"),
k = 2,
features = NULL,
na_removal = c("feature", "sample"),
seed = 123,
...
)
data |
|
norm_method |
|
unit_int |
|
clust_method |
|
k |
|
features |
|
na_removal |
|
seed |
|
... |
arguments to be passed to |
object of class feature_cluster
containing the clustering algorithm and a tidy version of clusters joined to the input dataset ready for further analysis
Trent Henderson
library(theft)
features <- theft::calculate_features(theft::simData,
feature_set = "catch22")
clusts <- cluster(features,
k = 6)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.