View source: R/sampleClustering.R
clusterDensity | R Documentation |
Save density summaries results.
clusterDensity(
data.sample,
label,
space,
features.to.keep = colnames(data.sample$features[[space]]$x)
)
data.sample |
list containing features, profiles and clustering results. |
label |
vector of labels. |
space |
space in which is the feature to deal with. |
features.to.keep |
vector of features names on which the summaries are computed. |
clusterDensity computes the clusters density from a clustering result.
out data.frame containing the density summaries.
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)
x <- computeUnSupervised(x, K=3, method.name="K-means")
label<-x[["clustering"]][["K-means_preprocessed"]][["label"]]
cluster.density <- clusterDensity(x, label, "preprocessed", features.to.keep='V1')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.