-
Notifications
You must be signed in to change notification settings - Fork 64
/
DESCRIPTION
55 lines (55 loc) · 1.92 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Package: dbscan
Title: Density-Based Spatial Clustering of Applications with Noise
(DBSCAN) and Related Algorithms
Version: 1.2-0-1
Date: 2024-xx-xx
Authors@R: c(
person("Michael", "Hahsler", email = "[email protected]",
role = c("aut", "cre", "cph"),
comment = c(ORCID = "0000-0003-2716-1405")),
person("Matthew", "Piekenbrock", role = c("aut", "cph")),
person("Sunil", "Arya", role = c("ctb", "cph")),
person("David", "Mount", role = c("ctb", "cph")),
person("Claudia", "Malzer", role = "ctb")
)
Description: A fast reimplementation of several density-based algorithms
of the DBSCAN family. Includes the clustering algorithms DBSCAN
(density-based spatial clustering of applications with noise) and
HDBSCAN (hierarchical DBSCAN), the ordering algorithm OPTICS (ordering
points to identify the clustering structure), shared nearest neighbor
clustering, and the outlier detection algorithms LOF (local outlier
factor) and GLOSH (global-local outlier score from hierarchies). The
implementations use the kd-tree data structure (from library ANN) for
faster k-nearest neighbor search. An R interface to fast kNN and
fixed-radius NN search is also provided. Hahsler, Piekenbrock and
Doran (2019) <doi:10.18637/jss.v091.i01>.
License: GPL (>= 2)
URL: https://github.com/mhahsler/dbscan
BugReports: https://github.com/mhahsler/dbscan/issues
Depends:
R (>= 3.2.0)
Imports:
generics,
graphics,
Rcpp (>= 1.0.0),
stats
Suggests:
dendextend,
fpc,
igraph,
knitr,
microbenchmark,
rmarkdown,
testthat (>= 3.0.0),
tibble
LinkingTo:
Rcpp
VignetteBuilder:
knitr
Config/testthat/edition: 3
Copyright: ANN library is copyright by University of Maryland, Sunil Arya
and David Mount. All other code is copyright by Michael Hahsler and
Matthew Piekenbrock.
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2