-
Notifications
You must be signed in to change notification settings - Fork 64
/
NAMESPACE
63 lines (50 loc) · 1.1 KB
/
NAMESPACE
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
56
57
58
59
60
61
62
63
useDynLib("dbscan")
import("Rcpp")
importFrom("graphics", "plot", "par", "segments", "lines", "polygon", "text")
importFrom("grDevices", "palette", "chull", "adjustcolor")
importFrom("stats", "dist", "hclust", "dendrapply", "as.dendrogram",
"is.leaf", "prcomp")
importFrom("methods", "is")
export(
adjacencylist,
kNN,
kNNdistplot,
kNNdist,
frNN,
sNN,
dbscan,
optics,
extractDBSCAN,
extractXi,
hdbscan,
extractFOSC,
sNNclust,
jpclust,
lof,
glosh,
pointdensity,
hullplot,
as.reachability
)
S3method(print, optics)
S3method(plot, optics)
S3method(predict, optics)
S3method(as.dendrogram, optics)
S3method(as.reachability, optics)
S3method(as.reachability, dendrogram)
S3method(print, reachability)
S3method(plot, reachability)
S3method(as.dendrogram, reachability)
S3method(print, dbscan_fast)
S3method(predict, dbscan_fast)
S3method(print, kNN)
S3method(print, frNN)
S3method(print, sNN)
S3method(print, hdbscan)
S3method(plot, hdbscan)
S3method(adjacencylist, kNN)
S3method(adjacencylist, frNN)
S3method(plot, NN)
S3method(sort, kNN)
S3method(sort, frNN)
S3method(sort, sNN)