ch22 {RFlocalfdr.data} | R Documentation |
ch22 importance values
Description
A dataset containing 1103547 importance values, and a table of variables used in splits. Note that the importances have not been logged.
Usage
ch22
Format
A list
- imp
importaces
- C
table of counts
Source
A Global Reference for Human Genetic Variation, Auton et al., Nature, 2015, 526:7571 pp 68–74
Examples
## Not run:
library(ranger)
system.time(fit.ranger.7 <- ranger(dependent.variable.name= "V1", data = aa2,
importance = "impurity",
num.threads=20,num.trees = 100000,
seed=123))
#Ranger result
#Call:
#ranger(dependent.variable.name = "V1", data = aa2, importance = "impurity",
# num.threads = 20, num.trees = 1e+05, seed = 123)
#Type: Classification
#Number of trees: 1e+05
#Sample size: 2504
#Number of independent variables: 1103547
#Mtry: 1050
#Target node size: 1
#Variable importance mode: impurity
#Splitrule: gini
#OOB prediction error: 4.27 %
C <-count_variables(fit.ranger.7)
imp<-rf1$variable.importance
ch22<-list(imp,C)
names(ch22)<-c("imp","C")
## End(Not run)
data(ch22)
[Package RFlocalfdr.data version 0.0.3 Index]