fpr_fs {forestControl} | R Documentation |
False Postivie Rate Feature Selection
Description
Calculate the False Positive Rate (FPR) for each feature using it's selection frequency
Usage
fpr_fs(x)
Arguments
x |
a |
Value
a tibble
of selection frequencies and their false positive rate
Author(s)
Jasen Finch jsf9@aber.ac.uk
Examples
library(randomForest)
data(iris)
iris.rf <- randomForest(iris[,-5], iris[,5], forest = TRUE)
iris.features <- fpr_fs(iris.rf)
print(iris.features)
[Package forestControl version 0.2.2 Index]