You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: Over sixty clustering algorithms are provided in this package with consistent input and output, which enables the user to try out algorithms swiftly. Additionally, 26 statistical approaches for the estimation of the number of clusters as well as the mirrored density plot (MD-plot) of clusterability are implemented. The packages is published in Thrun, M.C., Stier Q.: "Fundamental Clustering Algorithms Suite" (2021), SoftwareX, <DOI:10.1016/j.softx.2020.100642>. Moreover, the fundamental clustering problems suite (FCPS) offers a variety of clustering challenges any algorithm should handle when facing real world data, see Thrun, M.C., Ultsch A.: "Clustering Benchmark Datasets Exploiting the Fundamental Clustering Problems" (2020), Data in Brief, <DOI:10.1016/j.dib.2020.105501>.
# [Ester et al., 1996] Ester, M., Kriegel, H.-P., Sander, J., & Xu, X.: A density-based algorithm for discovering clusters in large spatial databases with noise, Proc. Kdd, Vol. 96, pp. 226-231, 1996.
23
24
25
+
if(isTRUE(Rcpp)){
26
+
if (!requireNamespace('mlpack',quietly=TRUE)) {
27
+
message(
28
+
'Subordinate clustering package (mlpack) is missing. No computations are performed.
29
+
Please install the package which is defined in "Suggests".'
30
+
)
31
+
return(
32
+
list(
33
+
Cls= rep(1, nrow(Data)),
34
+
Object="Subordinate clustering package (mlpack) is missing.
35
+
Please install the package which is defined in 'Suggests'."
36
+
)
37
+
)
38
+
}
39
+
}else{
40
+
41
+
24
42
if (!requireNamespace('dbscan',quietly=TRUE)) {
25
43
message(
26
44
'Subordinate clustering package (dbscan) is missing. No computations are performed.
0 commit comments