View source: R/prune_clusters.R
| prune_clusters | R Documentation |
Creates a (static) copy of a clustering where a fraction of the weight or the number of clusters with the lowest weights were pruned.
prune_clusters(dsc, threshold = 0.05, weight = TRUE)
dsc |
The DSC object to be pruned. |
threshold |
The numeric vector of probabilities for the quantile. |
weight |
should a fraction of the total weight in the clustering be pruned? Otherwise a fraction of clusters is pruned. |
Returns an object of class DSC_Static.
Michael Hahsler
DSC_Static
Other DSC:
DSC(),
DSC_Macro(),
DSC_Micro(),
DSC_R(),
DSC_SlidingWindow(),
DSC_Static(),
DSC_TwoStage(),
animate_cluster(),
evaluate.DSC,
get_assignment(),
plot.DSC(),
predict(),
read_saveDSC,
recluster()
# 3 clusters with 10% noise
stream <- DSD_Gaussians(k=3, noise=0.1)
dbstream <- DSC_DBSTREAM(r=0.1)
update(dbstream, stream, 500)
dbstream
plot(dbstream, stream)
# prune lightest micro-clusters for 20% of the weight of the clustering
static <- prune_clusters(dbstream, threshold=0.2)
static
plot(static, stream)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.