sft {forestControl} | R Documentation |
Selection Frequency Threshold
Description
Determine the selecton frequency threshold of a model at a specified false positive rate
Usage
sft(x, alpha)
Arguments
x |
a |
alpha |
a false positive rate (ie, 0.01) |
Value
a list of two elements
-
sft Tthe selection frequency threshold
-
probs_atsft The esimated false positive rate
Author(s)
Tom Wilson tpw2@aber.ac.uk
Examples
library(randomForest)
data(iris)
iris.rf <- randomForest(iris[,-5], iris[,5], forest = TRUE)
# For a false positive rate of 1%
iris.sft <- sft(iris.rf, 0.01)
print(iris.sft)
# To iterate through a range of alpha values
alpha <- c(0.01,0.05, 0.1,0.15,0.2, 0.25)
threshold <- NULL
for(i in seq_along(alpha)){
threshold[i] <- sft(iris.rf, alpha[i])$sft
}
plot(alpha, threshold, type = 'b')
[Package forestControl version 0.2.2 Index]