Learn R Programming

RclusTool (version 0.91)

sortLabel: Clusters labels sorting

Description

Sort clusters labels by decreasing sizes for unsupervised classification.

Usage

sortLabel(label)

Arguments

label

vector of labels (integers).

Value

sorted labels

Details

sortLabel sorts clusters labels by decreasing sizes, in unsupervised classification

Examples

Run this code
# NOT RUN {
dat <- rbind(matrix(rnorm(100, mean = 0, sd = 0.3), ncol = 2), 
             matrix(rnorm(100, mean = 2, sd = 0.3), ncol = 2), 
             matrix(rnorm(100, mean = 4, sd = 0.3), ncol = 2))
tf <- tempfile()
write.table(dat, tf, sep=",", dec=".")

x <- importSample(file.features=tf, dir.save=tempdir())
res <- KmeansQuick(x$features$initial$x, K=3)

sortLabel(res$cluster)


# }

Run the code above in your browser using DataLab