-
Notifications
You must be signed in to change notification settings - Fork 2
/
.Rhistory
512 lines (512 loc) · 12.4 KB
/
.Rhistory
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
}
predict.pirf <- function(res,
pred_data = NULL,
num_threads = parallel::detectCores(),
concise = TRUE,
interval_type = "two-sided",
alpha = 0.1,
...){
#list of models fit
method <- names(res)
#check for currently running parallel processes
if(is.null(num_threads)){
num_threads <- parallel::detectCores()
} else {
num_threads = num_threads
}
#fix this
if(foreach::getDoParWorkers() != num_threads){
clust <- parallel::makeCluster(num_threads)
doParallel::registerDoParallel(clust)
} else {
}
#list for all intervals; just gets all output for each interval
#res <- list()
int <- list()
preds <- list()
newpreds <- list()
#one sided intervals
if(interval_type == "two-sided"){
alpha1 <- alpha/2
alpha2 <- 1-alpha/2
} else if(interval_type == "upper"){
alpha1 <- 0
alpha2 <- 1-alpha
} else {
alpha1 <- alpha
alpha2 <- 1
}
#tracking list
for(id in method){
if(id == "oob"){
#oob
#browser()
#no saving of model yet
preds[[id]] <- res[[id]]$testPred
int[[id]] <- res[[id]]$oob_interval
} else if (id == "bop"){
#bop
#new predict function
newpreds[[id]] <- predict_bop(res[[id]],
pred_data = test_data,
interval_method = Roy_method,
calibrate = calibrate,
alpha = alpha,
tolerance = tolerance,
interval_type = interval_type,
num_threads = num_threads)
preds[[id]] <- newpreds[[id]]$preds
int[[id]] <- newpreds[[id]]$pred_intervals
} else if (id == "brf"){
#brf
#new predict function
newpreds[[id]] <- predict_brf(res[[id]],
pred_data = test_data,
alpha = alpha,
interval_type = interval_type,
variant = variant)
preds[[id]] <- newpreds[[id]]$preds
int[[id]] <- newpreds[[id]]$pred_intervals
} else if (id == "bcqrf"){
#bcqrf
#new predict function
newpreds[[id]] <- predict_bcqrf(res[[id]],
train_data = train_data,
pred_data = test_data,
intervals = TRUE,
alpha = alpha,
num_threads = num_threads,
interval_type = interval_type)
preds[[id]] <- newpreds[[id]]$preds
int[[id]] <- newpreds[[id]]$pred_intervals
} else if (id == "cqrf"){
#cqrf
#new predict function
newpreds[[id]] <- predict_cqrf(res[[id]],
pred_data = test_data,
alpha = alpha,
num_threads = num_threads,
intervals = TRUE,
interval_type = "two-sided")
preds[[id]] <- newpreds[[id]]$preds
int[[id]] <- newpreds[[id]]$pred_intervals
} else if (id == "hdi"){
#hdi
#new predict function
newpreds[[id]] <- predict_hdi(res[[id]],
test_data,
alpha = alpha,
num_threads = num_threads)
preds[[id]] <- newpreds[[id]]$preds
int[[id]] <- newpreds[[id]]$pred_intervals
} else if (id == "quantile"){
#qrf call
#need to do this with predict for quantReg with ranger
preds[[id]] <- predict(res[[id]], test_data, type = "quantiles", quantiles = c(alpha1, 0.5, alpha2))$predictions
int[[id]] <- preds[[id]][,c(1,3)]
#save only median
preds[[id]] <- preds[[id]][,2]
} else {
stop(paste0(id, " is not a supported random forest prediction interval methodology"))
}
#one sided intervals; adjusts intervals based on on what sided interval is desired
if(interval_type == "upper"){
int[[id]][,1] <- -Inf
} else if(interval_type == "lower"){
int[[id]][,2] <- Inf
}
colnames(int[[id]]) <- c("lower", "upper")
}
return(list(method = method, preds = preds, int = int))
foreach::registerDoSEQ()
}
?pirf
pirf
build("piRF")
library(devtools)
document()
build()
install()
library(piRF)
piRF::pirf()
piRF::pirf
piRF::rfint
ranger
library(ranger)
?ranger
?ranger
?rfinterval
?pirf
piRF::rfint
rfint <- function(formula = NULL,
train_data = NULL,
test_data = NULL,
method = "oob",
alpha = 0.1,
symmetry = TRUE,
seed = NULL,
m_try = NULL,
num_trees = 500,
min_node_size = NULL,
num_threads = parallel::detectCores(),
calibrate = FALSE,
Roy_method = "quantile",
featureBias = FALSE,
predictionBias = TRUE,
Tung_R = 5,
Tung_num_trees = 75,
variant = 1,
Ghosal_num_stages = 2,
prop = .618,
concise = TRUE,
interval_type = "two-sided"){
.Deprecated("pirf", msg = "rfint() is deprecated. Utilize pirf() to build your forest model(s) and predict.pirf() to get test predictions and intervals.")
}
rfint()
document()
rfint <- NULL
document()
build()
install()
library(piRF)
piRF:::rfweight()
piRF:::rfweight
document()
library(devtools)
document()
build()
install()
library(piRF)
piRF::rfint
piRF::rfint()
method_vec <- c("quantile", "oob", "bcqrf", "cqrf", "bop", "hdi", "brf")
#generate train and test data
set.seed(2020)
ratio <- .975
nrow <- nrow(airfoil)
n <- floor(nrow*ratio)
samp <- sample(1:nrow, size = n)
train <- airfoil[samp,]
test <- airfoil[-samp,]
#generate prediction intervals
res <- pirf(pressure ~ . , train_data = train, test_data = test,
method = method_vec,
concise= FALSE,
num_threads = 2)
#generate prediction intervals
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2)
document()
library(devtools)
build()
install()
library(piRF)
#generate prediction intervals
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2)
build()
install()
#generate fitted models
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2)
method_vec
reps
build()
install()
#generate fitted models
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2)
build()
install()
#generate fitted models
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2)
install()
build()
install()
#generate fitted models
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2)
build()
install()
#generate fitted models
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2)
build()
install()
#generate fitted models
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2)
build()
install()
#generate fitted models
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2)
build()
install()
#generate fitted models
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2)
build()
install()
#generate fitted models
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2,
alpha = .1)
build()
install()
#generate fitted models
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2,
alpha = .1)
#' @param featureBias Remove feature bias. Only for \code{method = "bcqrf"}.
#' @param predictionBias Remove prediction bias. Only for \code{method = "bcqrf"}.
#' @param Tung_R Number of repetitions used in bias removal. Only for \code{method = "bcqrf"}.
#' @param Tung_num_trees Number of trees used in bias removal. Only for \code{method = "bcqrf"}.
#' @param interval_type Type of prediction interval to generate.
#' Options are \code{method = c("two-sided", "lower", "upper")}. Default is \code{method = "two-sided"}.
#' @export
#' @seealso \link[ranger]{ranger}
#' @seealso \link[rfinterval]{rfinterval}
#' @seealso \link[piRF]{predict.pirf}
pirf <- function(formula = NULL,
train_data = NULL,
method = "oob",
alpha = 0.1,
symmetry = TRUE,
seed = NULL,
m_try = NULL,
num_trees = 500,
min_node_size = NULL,
num_threads = parallel::detectCores(),
calibrate = FALSE,
split = .5,
Roy_method = "quantile",
featureBias = FALSE,
predictionBias = TRUE,
Tung_R = 5,
Tung_num_trees = 75,
variant = 1,
Ghosal_num_stages = 2,
prop = .618,
concise = TRUE,
interval_type = "two-sided",
...){
#check for currently running parallel processes
if(is.null(num_threads)){
num_threads <- parallel::detectCores()
} else {
num_threads = num_threads
}
#fix this
if(foreach::getDoParWorkers() != num_threads){
clust <- parallel::makeCluster(num_threads)
doParallel::registerDoParallel(clust)
} else {
}
#list for all intervals; just gets all output for each interval
res <- list()
int <- list()
preds <- list()
newpreds <- list()
#one sided intervals
if(interval_type == "two-sided"){
alpha1 <- alpha/2
alpha2 <- 1-alpha/2
} else if(interval_type == "upper"){
alpha1 <- 0
alpha2 <- 1-alpha
} else {
alpha1 <- alpha
alpha2 <- 1
}
print(alpha1)
#browser()
#tracking list
for(id in method){
if(id == "oob"){
#oob call; no one sided
#res[[id]] <- ranger::ranger(formula = formula, data = train_data,
# num.trees = num_trees, mtry = m_try, min.node.size = min_node_size,
# num.threads = num_threads)
res[[id]] <- rfinterval::rfinterval(formula = formula, train_data = train_data, test_data = train_data,
method = "oob", alpha = alpha, symmetry = symmetry, seed = seed,
params_ranger = list(mtry = m_try, num.trees = num_trees, min.node.size = min_node_size,
num.threads = num_threads))
#predictions for training data
preds[[id]] <- res[[id]]$testPred
int[[id]] <- res[[id]]$oob_interval
} else if (id == "bop"){
#bop
#new fit function
res[[id]] <- fit_bop(formula = formula,
train_data = train_data,
num_trees = num_trees,
num_threads = num_threads,
m_try = m_try)
#new predict function
newpreds[[id]] <- predict_bop(res[[id]],
pred_data = train_data,
interval_method = Roy_method,
calibrate = calibrate,
alpha = alpha,
tolerance = tolerance,
interval_type = interval_type,
num_threads = num_threads)
#predictions for training data
preds[[id]] <- newpreds[[id]]$preds
int[[id]] <- newpreds[[id]]$pred_intervals
} else if (id == "brf"){
#brf
#new fit function
res[[id]] <- fit_brf(formula,
train_data,
num_trees = num_trees,
min_node_size = min_node_size,
m_try = m_try,
keep_inbag = TRUE,
prop = prop,
variant = variant,
num_threads = num_threads,
num_stages = Ghosal_num_stages)
#new predict function
newpreds[[id]] <- predict_brf(res[[id]],
pred_data = train_data,
alpha = alpha,
interval_type = interval_type,
variant = variant)
#predictions for training data
preds[[id]] <- newpreds[[id]]$preds
int[[id]] <- newpreds[[id]]$pred_intervals
} else if (id == "bcqrf"){
#bcqrf
#new fit function
res[[id]] <- fit_bcqrf(formula = formula,
train_data = train_data,
num_trees = num_trees,
min_node_size = min_node_size,
m_try = m_try,
keep_inbag = TRUE,
feature_num_trees = Tung_num_trees,
featureBias = TRUE,
predictionBias = TRUE,
R = Tung_R,
num_threads = num_threads)
#new predict function
newpreds[[id]] <- predict_bcqrf(res[[id]],
train_data = train_data,
pred_data = train_data,
intervals = TRUE,
alpha = alpha,
num_threads = num_threads,
interval_type = interval_type)
#predictions for training data
preds[[id]] <- res[[id]]$preds
int[[id]] <- res[[id]]$pred_intervals
} else if (id == "cqrf"){
#cqrf
#new fit function
res[[id]] <- fit_cqrf(formula = formula,
train_data = train_data,
split = split,
num_trees = num_trees,
min_node_size = min_node_size,
m_try = m_try,
keep_inbag = TRUE,
forest_type = "RF",
num_threads = num_threads)
#new predict function
newpreds[[id]] <- predict_cqrf(res[[id]],
pred_data = train_data,
alpha = alpha,
num_threads = num_threads,
intervals = TRUE,
interval_type = "two-sided")
#predictions for training data
preds[[id]] <- res[[id]]$preds
int[[id]] <- res[[id]]$pred_intervals
} else if (id == "hdi"){
#hdi
#new fit function
res[[id]] <- fit_hdi(formula,
train_data = train_data,
num_tree = num_trees,
mtry = m_try,
min_node_size = min_node_size,
max_depth = 10,
replace = TRUE,
verbose = FALSE,
num_threads = num_threads)
#new predict function
newpreds[[id]] <- predict_hdi(res[[id]],
train_data,
alpha = alpha,
num_threads = num_threads)
#predictions for training data
preds[[id]] <- newpreds[[id]]$preds
int[[id]] <- newpreds[[id]]$pred_intervals
} else if (id == "quantile"){
#qrf call
#intermediate step to get quantReg model
res[[id]] <- ranger::ranger(formula = formula, data = train_data,
num.trees = num_trees, mtry = m_try, min.node.size = min_node_size,
quantreg = TRUE, num.threads = num_threads)
#need to do this with predict for quantReg with ranger
preds[[id]] <- predict(res[[id]], train_data, type = "quantiles", quantiles = c(alpha1, 0.5, alpha2))$predictions
int[[id]] <- preds[[id]][,c(1,3)]
#save only median
preds[[id]] <- preds[[id]][,2]
} else {
stop(paste0(id, " is not a supported random forest prediction interval methodology"))
}
#one sided intervals; adjusts intervals based on on what sided interval is desired
#if(interval_type == "upper"){
# int[[id]][,1] <- -Inf
#} else if(interval_type == "lower"){
# int[[id]][,2] <- Inf
#}
#colnames(int[[id]]) <- c("lower", "upper")
}
foreach::registerDoSEQ()
class(res) = "pirf"
return(res)
}
#generate fitted models
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2,
alpha = .1)
build()
install()
library(piRF)
#generate fitted models
res <- pirf(pressure ~ . , train_data = train,
method = method_vec,
concise= FALSE,
num_threads = 2,
alpha = .1)