-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNAMESPACE
46 lines (46 loc) · 1.47 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
import(ranger)
import(MASS)
import(parallel)
import(doParallel)
import(foreach)
import(matrixStats)
importFrom(readr, "read_file")
importFrom(stringr, "str_extract", "str_extract_all", "str_match", "str_match_all")
importFrom(grDevices, "rainbow", "dev.off")
importFrom(graphics, "legend", "lines", "par", "plot", "abline", "points","dotchart")
importFrom(stats, "density", "model.frame", "model.response","predict", "reformulate", "terms")
importFrom(utils, "head", "tail", "setTxtProgressBar", "txtProgressBar")
importFrom(Rcpp, evalCpp)
export(abcrf)
export(err.abcrf)
export(err.regAbcrf)
export(regAbcrf)
export(covRegAbcrf)
export(predictOOB)
export(densityPlot)
export(variableImpPlot)
export(readRefTable)
S3method(abcrf, formula)
S3method(abcrf, default)
S3method(plot, abcrf)
S3method(print, abcrf)
S3method(predict, abcrf)
S3method(summary, abcrfpredict)
S3method(print, abcrfpredict)
S3method(as.matrix, abcrfpredict)
S3method(as.data.frame, abcrfpredict)
S3method(as.list, abcrfpredict)
S3method(regAbcrf, formula)
S3method(predict, regAbcrf)
S3method(predictOOB, regAbcrf)
S3method(plot, regAbcrf)
S3method(covRegAbcrf, regAbcrf)
S3method(print, regAbcrf)
S3method(print, regAbcrfpredict)
S3method(print, regAbcrfOOBpredict)
S3method(as.matrix, regAbcrfpredict)
S3method(as.data.frame, regAbcrfpredict)
S3method(as.list, regAbcrfpredict)
S3method(as.list, regAbcrfOOBpredict)
S3method(densityPlot, regAbcrf)
useDynLib(abcrf, .registration = TRUE)