FSelector (version 0.21)

random.forest.importance: RandomForest filter

Description

The algorithm finds weights of attributes using RandomForest algorithm.

Usage

random.forest.importance(formula, data, importance.type = 1)

Arguments

formula

a symbolic description of a model

data

data to process

importance.type

either 1 or 2, specifying the type of importance measure (1=mean decrease in accuracy, 2=mean decrease in node impurity)

Value

a data.frame containing the worth of attributes in the first column and their names as row names

Details

This is a wrapper for importance.

Examples

Run this code
# NOT RUN {
  library(mlbench)
  data(HouseVotes84)
  
  weights <- random.forest.importance(Class~., HouseVotes84, importance.type = 1)
  print(weights)
  subset <- cutoff.k(weights, 5)
  f <- as.simple.formula(subset, "Class")
  print(f)
# }

Run the code above in your browser using DataLab