forked from xrobin/pROC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNAMESPACE
150 lines (124 loc) · 3.4 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
export(are.paired)
S3method("are.paired", "auc")
S3method("are.paired", "roc")
S3method("are.paired", "smooth.roc")
export(auc)
S3method("auc", "roc")
S3method("auc", "smooth.roc")
S3method("auc", "formula")
S3method("auc", "default")
S3method("auc", "multiclass.roc")
export(ci)
S3method("ci", "roc")
S3method("ci", "smooth.roc")
S3method("ci", "default")
S3method("ci", "formula")
export(ci.coords)
S3method("ci.coords", "roc")
S3method("ci.coords", "smooth.roc")
S3method("ci.coords", "default")
S3method("ci.coords", "formula")
export(ci.thresholds)
S3method("ci.thresholds", "roc")
S3method("ci.thresholds", "smooth.roc")
S3method("ci.thresholds", "default")
S3method("ci.thresholds", "formula")
export(ci.sp)
S3method("ci.sp", "roc")
S3method("ci.sp", "smooth.roc")
S3method("ci.sp", "default")
S3method("ci.sp", "formula")
export(ci.se)
S3method("ci.se", "roc")
S3method("ci.se", "smooth.roc")
S3method("ci.se", "default")
S3method("ci.se", "formula")
export(ci.auc)
S3method("ci.auc", "roc")
S3method("ci.auc", "smooth.roc")
S3method("ci.auc", "default")
S3method("ci.auc", "formula")
S3method("ci.auc", "auc")
export(coords)
S3method("coords", "roc")
S3method("coords", "smooth.roc")
export(cov)
S3method("cov", "roc")
S3method("cov", "smooth.roc")
S3method("cov", "default")
S3method("cov", "auc")
export(has.partial.auc)
S3method("has.partial.auc", "roc")
S3method("has.partial.auc", "smooth.roc")
S3method("has.partial.auc", "auc")
export(multiclass.roc)
S3method("multiclass.roc", "default")
S3method("multiclass.roc", "formula")
export(power.roc.test)
S3method("power.roc.test", "roc")
S3method("power.roc.test", "numeric")
S3method("power.roc.test", "list")
S3method("print", "roc")
S3method("print", "smooth.roc")
S3method("print", "auc")
S3method("print", "ci.auc")
S3method("print", "ci.thresholds")
S3method("print", "ci.se")
S3method("print", "ci.sp")
S3method("print", "ci.coords")
S3method("print", "multiclass.roc")
S3method("print", "multiclass.auc")
export(roc)
S3method("roc", "default")
S3method("roc", "formula")
export(roc.test)
S3method("roc.test", "roc")
S3method("roc.test", "smooth.roc")
S3method("roc.test", "default")
S3method("roc.test", "formula")
S3method("roc.test", "auc")
export(smooth)
S3method("smooth", "roc")
S3method("smooth", "smooth.roc")
S3method("smooth", "default")
export(var)
S3method("var", "roc")
S3method("var", "smooth.roc")
S3method("var", "default")
S3method("var", "auc")
S3method("Ops", "auc")
S3method("Ops", "ci.se")
S3method("Ops", "ci.sp")
S3method("Ops", "ci.coords")
S3method("Ops", "ci.auc")
S3method("Ops", "ci")
S3method("Math", "auc")
S3method("Math", "ci.se")
S3method("Math", "ci.sp")
S3method("Math", "ci.coords")
S3method("Math", "ci.auc")
S3method("Math", "ci")
S3method("lines", "roc")
S3method("lines", "smooth.roc")
export(lines.roc)
S3method("lines.roc", "roc")
S3method("lines.roc", "smooth.roc")
S3method("lines.roc", "formula")
S3method("lines.roc", "default")
S3method("plot", "roc")
S3method("plot", "smooth.roc")
S3method("plot", "ci.thresholds")
S3method("plot", "ci.sp")
S3method("plot", "ci.se")
export(plot.roc)
S3method("plot.roc", "roc")
S3method("plot.roc", "smooth.roc")
S3method("plot.roc", "formula")
S3method("plot.roc", "default")
# Generic ggplot from ggplot2
importFrom(ggplot2, ggplot)
export(ggroc)
S3method("ggroc", "roc")
S3method("ggroc", "list")
import(plyr, methods, utils, Rcpp, grDevices, graphics, stats)
useDynLib(pROC, .registration = TRUE)