get_partition {ClustVarLV} | R Documentation |
clusters memberships for a partition into K clusters.
Description
To get the clusters memberships of the variables.
Usage
get_partition(resclv, K = NULL, type = "vector")
Arguments
resclv |
: result of CLV(), CLV_kmeans(), LCLV(), CLV3W() or CLV3W_km() |
K |
: the number of clusters chosen (already defined if CLV_kmeans or CLV3W_kmeans is used) |
type |
: "vector" (by default) for output given as a vector of integers between 1 and K (with 0 for "kplusone" strategy), |
Value
partition |
the group's membership for the variables, in a vector or matrix form. |
Examples
data(apples_sh)
resclvX <- CLV(X = apples_sh$senso, method = "directional", sX = TRUE)
parti4G<-get_partition(resclvX, K = 4)
[Package ClustVarLV version 2.1.1 Index]