forked from cran/mclustAddons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNAMESPACE
53 lines (46 loc) · 1.61 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
useDynLib(mclustAddonsEHA, .registration = TRUE)
# importFrom(Rcpp, evalCpp)
importFrom("Rcpp", sourceCpp)
# exportPattern("^[[:alpha:]]+")
# Import all packages listed as Imports or Depends
import("stats", "graphics", "grDevices", "utils", "Rcpp",
"mclust", "methods", "foreach", "iterators")
# Exported functions and methods
export("densityMclustBounded",
"print.densityMclustBounded",
"summary.densityMclustBounded",
"print.summary.densityMclustBounded",
"plot.densityMclustBounded",
"predict.densityMclustBounded",
"cdfDensityBounded", "quantileDensityBounded",
"densityMclustBounded.diagnostic")
S3method("print", "densityMclustBounded")
S3method("summary", "densityMclustBounded")
S3method("print", "summary.densityMclustBounded")
S3method("plot", "densityMclustBounded")
S3method("predict", "densityMclustBounded")
export("GaussianMixtureMEM",
"MclustMEM",
"print.MclustMEM",
"summary.MclustMEM",
"print.summary.MclustMEM",
"plot.MclustMEM")
S3method("print", "MclustMEM")
S3method("summary", "MclustMEM")
S3method("print", "summary.MclustMEM")
S3method("plot", "MclustMEM")
export("EntropyGMM",
"EntropyGMM.densityMclust",
"EntropyGMM.densityMclustBounded",
"EntropyGMM.Mclust",
"EntropyGMM.matrix",
"EntropyGMM.data.frame",
"EntropyGauss",
"nats2bits",
"bits2nats")
S3method("EntropyGMM", "densityMclust")
S3method("EntropyGMM", "densityMclustBounded")
S3method("EntropyGMM", "Mclust")
S3method("EntropyGMM", "matrix")
S3method("EntropyGMM", "data.frame")
export("logsumexp", "softmax")