forked from cran/flare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAMESPACE
44 lines (44 loc) · 1.18 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
useDynLib("flare", .registration=TRUE)
import("MASS","Matrix","lattice","igraph")
export("sugm",
"sugm.generator",
"sugm.clime.ladm.scr",
"sugm.tiger.ladm.scr",
"sugm.roc",
"sugm.select",
"slim",
"slim.lad.ladm.scr.btr",
"slim.sqrt.ladm.scr",
"slim.dantzig.ladm.scr",
"slim.lq.ladm.scr.btr",
"slim.lasso.ladm.scr",
"sugm.plot",
"print.slim",
"print.sugm",
"print.roc",
"print.select",
"print.sim",
"plot.slim",
"plot.sugm",
"plot.roc",
"plot.select",
"plot.sim",
"coef.slim",
"predict.slim")
importFrom("grDevices", "dev.off", "gray.colors", "postscript")
importFrom("graphics", "lines", "matplot", "par", "plot")
importFrom("methods", "new")
importFrom("stats", "cor", "cov", "runif", "sd")
importFrom("utils", "flush.console")
S3method("print", "sugm")
S3method("print", "slim")
S3method("print", "roc")
S3method("print", "select")
S3method("print", "sim")
S3method("plot", "sugm")
S3method("plot", "slim")
S3method("plot", "roc")
S3method("plot", "select")
S3method("plot", "sim")
S3method("coef", "slim")
S3method("predict", "slim")