The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
This vignette documents how to use the DBCVindex library
in R. The DBCV index
is a coefficient that assesses the results of clustering results, taking
into account the density-based components of clustering.
Let’s suppos you have the moons data and that you want
to apply the HDBSCAN algorithm with 5 minimal points to them:
if (!requireNamespace("pacman", quietly = TRUE)) {
install.packages("pacman")
}
library("pacman")
p_load("DBCVindex, dbscan")
data("moons")
these_minimal_points <- 5
clustering_results <- hdbscan(moons, minPts = these_minimal_points)
You can calculate the DBCV of HDBSCAN clusters this way:
cat("DBCV index = ", dbcv_index(moons, clustering_results$"cluster"), " in the [-1;+1] interval\n", sep="")
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.