-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNAMESPACE
More file actions
173 lines (118 loc) · 4.31 KB
/
NAMESPACE
File metadata and controls
173 lines (118 loc) · 4.31 KB
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
export(
"ROC", "Response", "VarImp",
"SplitTrainTest", "LogitBoost", "TModC",
"Rules", "LeafRates", "CP", "Node", "FitMod", "CoeffDiffCI",
"PlotLift", "Tune", "RefLevel","BestCut","OverSample","UnderSample",
"RobSummary", "PredictCI","BreuschPaganTest"
)
importFrom("stats", "predict", "vcov", "model.frame", "model.response", "na.pass",
".getXlevels", "coef", "lm.fit", "model.matrix","pchisq", "terms", "C", "na.omit",
"cov2cor", "formula", "model.weights", "naprint",
"printCoefmat", "residuals", "symnum", "update.formula",
"df.residual", "pnorm", "pt", "qt","anova", "as.formula", "confint", "drop.scope",
"drop1", "ftable", "glm", "model.extract", "reshape",
"update", "AIC", "coefficients", "confint.default",
"deviance", "qnorm", "runif", "dnorm", "sd",
"binomial", "delete.response", "dnbinom", "dpois",
"glm.fit", "lm.wfit", "logLik", "make.link", "optim",
"pnbinom", "poisson", "ppois", "quantile",
"BIC", "binom.test", "complete.cases","pf",
"mcnemar.test", "nobs", "setNames", "weights", "xtabs","lm")
importFrom("graphics", "dotchart", "grid", "plot", "par", "legend", "lines",
"points", "mosaicplot")
importFrom("grDevices", "palette")
importFrom("methods", "slot", "slotNames")
importFrom("utils", "capture.output", "head", "write.table", "tail")
importFrom("nnet", "nnet", "multinom")
importFrom("MASS","glm.nb","lda","qda","stepAIC", "polr","loglm")
importFrom("pROC","roc","auc","coords", "ci.coords")
importFrom("randomForest", "randomForest","importance", "tuneRF")
importFrom("DescTools","Unwhich", "Sort","DoCall","Pal","OddsRatio",
"Format","SetAlpha","Desc", "DescToolsOptions", "Fmt","IsDichotomous",
"SetNames", "Mode", "BoxedText","Append", "ColToOpaque", "Sample",
"Conf","Cstat","BrierScore","PseudoR2","%nin%","Ndec", "Fm", "StrAlign")
importFrom("C50","C5.0","C5imp")
importFrom("e1071","svm")
importFrom("rpart","rpart","path.rpart","printcp","plotcp")
importFrom("pscl", "zeroinfl")
importFrom("relaimpo", "calc.relimp")
importFrom("rpart.plot", "rpart.plot")
importFrom("lattice", "barchart","panel.rect","panel.text","panel.barchart")
importFrom("survival", "Surv", "survreg", "survreg.distributions")
importFrom("class", "knn","knn1", "SOM")
importFrom("lmtest","waldtest","lrtest")
importFrom("car", "linearHypothesis")
importFrom("robustbase", "lmrob")
importFrom("NeuralNetTools", "plotnet")
importFrom("car", "Anova")
importFrom("naivebayes", "naive_bayes")
importFrom("sandwich", "vcovHC")
importFrom("AER", "tobit")
S3method(Desc, rpart)
S3method(summary, FitMod)
S3method(print, FitMod)
S3method(plot, FitMod)
S3method(predict, FitMod)
S3method(Conf, FitMod)
S3method(Cstat, FitMod)
# S3method(BrierScore, FitMod)
S3method(OddsRatio, FitMod)
S3method(update, FitMod)
S3method(predict, LogitBoost)
S3method(VarImp, FitMod)
S3method(VarImp, default)
S3method(VarImp, lm)
# S3method(Conf, default)
# S3method(Conf, table)
# S3method(Conf, matrix)
# S3method(Conf, rpart)
# S3method(Conf, multinom)
# S3method(Conf, glm)
# S3method(Conf, randomForest)
# S3method(Conf, svm)
# S3method(Conf, regr)
# S3method(Conf, lda)
# S3method(Conf, qda)
S3method(Conf, polr)
S3method(OddsRatio, polr)
S3method(OddsRatio, multinom)
# S3method(Cstat, default)
# S3method(Cstat, glm)
# S3method(BrierScore, default)
# S3method(BrierScore, FitMod)
# S3method(BrierScore, mult)
# S3method(BrierScoreCI, default)
# S3method(BrierScoreCI, glm)
# S3method(CstatCI, default)
# S3method(CstatCI, glm)
# S3method(MAE, default)
# S3method(MAE, lm)
# S3method(MAPE, default)
# S3method(MAPE, lm)
# S3method(SMAPE, default)
# S3method(SMAPE, lm)
# S3method(MSE, default)
# S3method(MSE, lm)
# S3method(RMSE, default)
# S3method(RMSE, lm)
# S3method(ModSummary, glm)
# S3method(ModSummary, lm)
# S3method(ModSummary, lmrob)
# S3method(ModSummary, OddsRatio)
S3method(print, FitMod)
S3method(print, Rules)
S3method(print, TModC)
S3method(plot, TModC)
S3method(plot, VarImp)
S3method(print, VarImp)
S3method(LogitBoost, formula)
S3method(LogitBoost, default)
S3method(confint, ROC)
S3method(Tune, default)
S3method(print, Tune)
S3method(print, LeafRates)
S3method(print, CP)
S3method(plot, CP)
S3method(print, node)
S3method(drop1, FitMod)
S3method(plot, LeafRates)