importLabelSample {RclusTool} | R Documentation |
Labels importation
Description
Import labels and add cleaned observations as 'noise'.
Usage
importLabelSample(label, data.sample, noise.cluster = "Noise")
Arguments
label |
vector of labels. |
data.sample |
sample object. |
noise.cluster |
character name of the cluster "Noise". |
Details
importLabelSample imports labels
Value
new.labels imported labels.
Examples
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)
res <- KmeansQuick(x$features$initial$x, K=3)
new.labels <- importLabelSample(res$cluster, x)
[Package RclusTool version 0.91.6 Index]