| Dbscan-class | R Documentation |
S4 class containing the features to plot DBSCAN. This constructor is internal and is used by the method runDBSCAN.
nameA character string representing the name of the Dbscan clustering.
epsilonA numeric vector. The epsilon is the distance to
consider two points belonging to the same cluster.
Default = c(1.3, 1.4, 1.5).
minPointsA numeric value. The minPoints is the minimum number of points to construct a cluster.
clusteringA matrix that contains the result of one DBSCAN clustering solution.
Dbscan(name = "character", epsilon = "numeric", minPoints = "numeric", clustering = "matrix")
name: Empty character string or the name of the tSNE.
epsilon: Empty 'numeric' representing the epsilon.
minPoints: Empty 'numeric' representing the minPoints value.
clustering: Empty 'numeric' "matrix" or matrix of clustering.
In the following snippets, x is a Dbscan object.
getName(x): Get the name of the Dbscan.
getEpsilon(x): Get the epsilon used.
getMinPoints(x): Get the MinPoint used.
getClustering(x): Get the matrix of DBSCAN clustering.
In the following snippets, x is a Dbscan object.
setName(x) <- value: Set the name of the Dbscan.
setEpsilon(x) <- value: Set the epsilon used.
setMinPoints(x) <- value: Set the minPoints used.
setClustering(x) <- value: Set the matrix of Dbscan clustering.
Ilyess Rachedi and Nicolas Descostes
runDBSCAN
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.