View source: R/sampleClustering.R
updateClustersNames | R Documentation |
Update the clusters names according to the names assigning to each prototype.
updateClustersNames(data.sample, protos)
data.sample |
list containing features, profiles and clustering results. |
protos |
list of selected prototypes (with index and name). |
updateClustersNames updates the clusters names according to the names assigning to each prototype
data.sample list containing features, profiles and clustering results with updated labels names.
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))
tf1 <- tempfile()
write.table(dat, tf1, sep=",", dec=".")
x <- importSample(file.features=tf1)
new.protos <- visualizeSampleClustering(x, selection.mode = "prototypes",
profile.mode="none", wait.close=FALSE)
x <- updateClustersNames(x, new.protos$prototypes)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.