1export(are.paired)
2S3method("are.paired", "auc")
3S3method("are.paired", "roc")
4S3method("are.paired", "smooth.roc")
5
6export(auc)
7S3method("auc", "roc")
8S3method("auc", "smooth.roc")
9S3method("auc", "formula")
10S3method("auc", "default")
11S3method("auc", "multiclass.roc")
12S3method("auc", "mv.multiclass.roc")
13
14export(ci)
15S3method("ci", "roc")
16S3method("ci", "smooth.roc")
17S3method("ci", "default")
18S3method("ci", "formula")
19S3method("ci", "auc")
20S3method("ci", "multiclass.roc")
21S3method("ci", "multiclass.auc")
22
23export(ci.coords)
24S3method("ci.coords", "roc")
25S3method("ci.coords", "smooth.roc")
26S3method("ci.coords", "default")
27S3method("ci.coords", "formula")
28
29export(ci.thresholds)
30S3method("ci.thresholds", "roc")
31S3method("ci.thresholds", "smooth.roc")
32S3method("ci.thresholds", "default")
33S3method("ci.thresholds", "formula")
34
35export(ci.sp)
36S3method("ci.sp", "roc")
37S3method("ci.sp", "smooth.roc")
38S3method("ci.sp", "default")
39S3method("ci.sp", "formula")
40
41export(ci.se)
42S3method("ci.se", "roc")
43S3method("ci.se", "smooth.roc")
44S3method("ci.se", "default")
45S3method("ci.se", "formula")
46
47export(ci.auc)
48S3method("ci.auc", "roc")
49S3method("ci.auc", "smooth.roc")
50S3method("ci.auc", "default")
51S3method("ci.auc", "formula")
52S3method("ci.auc", "auc")
53S3method("ci.auc", "multiclass.roc")
54S3method("ci.auc", "multiclass.auc")
55
56export(coords)
57S3method("coords", "roc")
58S3method("coords", "smooth.roc")
59
60export(cov)
61S3method("cov", "roc")
62S3method("cov", "smooth.roc")
63S3method("cov", "default")
64S3method("cov", "auc")
65
66export(has.partial.auc)
67S3method("has.partial.auc", "roc")
68S3method("has.partial.auc", "smooth.roc")
69S3method("has.partial.auc", "auc")
70
71export(multiclass.roc)
72S3method("multiclass.roc", "default")
73S3method("multiclass.roc", "formula")
74
75export(power.roc.test)
76S3method("power.roc.test", "roc")
77S3method("power.roc.test", "numeric")
78S3method("power.roc.test", "list")
79
80S3method("print", "roc")
81S3method("print", "smooth.roc")
82S3method("print", "auc")
83S3method("print", "ci.auc")
84S3method("print", "ci.thresholds")
85S3method("print", "ci.se")
86S3method("print", "ci.sp")
87S3method("print", "ci.coords")
88S3method("print", "multiclass.roc")
89S3method("print", "multiclass.auc")
90S3method("print", "mv.multiclass.roc")
91S3method("print", "mv.multiclass.auc")
92
93export(roc)
94S3method("roc", "default")
95S3method("roc", "formula")
96S3method("roc", "data.frame")
97
98export(roc_)
99
100export(roc.test)
101S3method("roc.test", "roc")
102S3method("roc.test", "smooth.roc")
103S3method("roc.test", "default")
104S3method("roc.test", "formula")
105S3method("roc.test", "auc")
106
107export(smooth)
108S3method("smooth", "roc")
109S3method("smooth", "smooth.roc")
110S3method("smooth", "default")
111
112export(var)
113S3method("var", "roc")
114S3method("var", "smooth.roc")
115S3method("var", "default")
116S3method("var", "auc")
117
118S3method("Ops", "auc")
119S3method("Ops", "ci.se")
120S3method("Ops", "ci.sp")
121S3method("Ops", "ci.auc")
122
123S3method("Math", "auc")
124S3method("Math", "ci.se")
125S3method("Math", "ci.sp")
126S3method("Math", "ci.auc")
127
128S3method("lines", "roc")
129S3method("lines", "smooth.roc")
130
131export(lines.roc)
132S3method("lines.roc", "roc")
133S3method("lines.roc", "smooth.roc")
134S3method("lines.roc", "formula")
135S3method("lines.roc", "default")
136
137S3method("plot", "roc")
138S3method("plot", "smooth.roc")
139S3method("plot", "ci.thresholds")
140S3method("plot", "ci.sp")
141S3method("plot", "ci.se")
142
143export(plot.roc)
144S3method("plot.roc", "roc")
145S3method("plot.roc", "smooth.roc")
146S3method("plot.roc", "formula")
147S3method("plot.roc", "default")
148
149export(ggroc)
150S3method("ggroc", "roc")
151S3method("ggroc", "smooth.roc")
152S3method("ggroc", "list")
153
154#export(select)
155#export(select_)
156#importFrom("dplyr", "select")
157#importFrom("dplyr", "select_")
158#S3method("select", "roc")
159#S3method("select_", "roc")
160
161# Fix R CMD check warning false positives
162# "apparent S3 methods exported but not registered"
163# Note: these methods have an export() above
164S3method("roc", "test")
165S3method("ci", "coords")
166S3method("ci", "se")
167S3method("ci", "sp")
168S3method("ci", "thresholds")
169
170import(plyr, Rcpp, grDevices, graphics, stats)
171useDynLib(pROC, .registration = TRUE)
172