| run_kmeans_clustering | R Documentation |
This function runs Kmeans Clustering. It uses the simple Kmeans algorithm with a max number of iterations set to be 100 by default. The number of clusters can be set by the users and defaults to 10 clusters. This is the R package stats implementation of Kmeans
run_kmeans_clustering(
dataList,
reductionType = "pca",
numberClusters = 10,
iterationsMax = 100,
seed = 1
)
dataList |
A list of data sets to be clustered by Kmeans |
reductionType |
The type of dimensionly reduced data that should be used for clustering, defaults to PCA |
numberClusters |
The number of cluster centers to use, defaults to 10 |
iterationsMax |
The max number of iterations that should be used in the kmeans algorithm, defaults to 100 |
The dataList with kmeans clusters stored in the meta data
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.