OPTICStbl | R Documentation |
OPTICStbl()
performs density-based clustering
of spectral similarity data using the OPTICS algorithm.
OPTICStbl(distmat, eps = 10000, minPts = 3, eps_cl = 0.5)
distmat |
A distance matrix as generated by
|
eps, minPts |
OPTICS parameters, see |
eps_cl |
The reachability distance used for cluster determination,
see |
The function internally uses optics
and extractDBSCAN
from the dbscan
package.
A data.frame
with feature name, cluster ID and
OPTICS order for each feature in distmat
.
OPTICSplot
load(file = system.file("extdata", "distmat.RData", package = "CluMSIDdata")) my_OTPICStbl <- OPTICStbl(distmat[1:50,1:50], eps_cl = 0.7)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.