-
Notifications
You must be signed in to change notification settings - Fork 1
/
NAMESPACE
57 lines (52 loc) · 1.26 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
#
# general exports
#
export("pdclust")
export("symmetricAlphaDivergence")
export("symmetric.alpha.divergence")
export("hellingerDistance")
export("hellinger.distance")
export("squaredHellingerDistance")
export("squared.hellinger.distance")
export("pdcDist")
export("pdc.dist")
export("entropyHeuristic")
export("entropy.heuristic")
export("codebook")
export("loo1nn")
export("mdsPlot")
export("mds.plot")
export("rasterPlot")
#
# export S3 generics
#
S3method("print", "mine")
S3method("plot", "mine")
S3method("plot","pdclust")
S3method("print","pdclust")
S3method("str","pdclust")
S3method("print","summary.mine")
S3method("summary","mine")
#
# trace & convert with legacy calls
#
export("traceImage")
export("trace.image")
export("convertImage")
export("convert.image")
#
# load shared object
#
useDynLib(pdc, .registration = TRUE)
#
# imports from default (but not base) packages
# required as of Mid 2015
#
importFrom("grDevices", "chull", "heat.colors")
importFrom("graphics", "abline", "contour", "image", "lines", "par",
"plot", "points", "polygon", "rasterImage", "strheight",
"strwidth", "text")
importFrom("stats", "as.dendrogram", "as.dist", "cmdscale", "hclust",
"pchisq")
importFrom("stats", "qnorm")
importFrom("utils", "str")