consistency: Consistency-based filter

Description Usage Arguments Details Value Author(s) See Also Examples

Description

The algorithm finds attribute subset using consistency measure for continous and discrete data.

Usage

1

Arguments

formula

a symbolic description of a model

data

data to process

Details

The alorithm makes use of best.first.search for searching the attribute subset space.

Value

a character vector containing chosen attributes

Author(s)

Piotr Romanski

See Also

best.first.search

Examples

1
2
3
4
5
6
  library(mlbench)
  data(HouseVotes84)
  
  subset <- consistency(Class~., HouseVotes84)
  f <- as.simple.formula(subset, "Class")
  print(f)

Example output

OpenJDK 64-Bit Server VM warning: Can't detect initial thread stack location - find_vma failed
Class ~ V3 + V4 + V7 + V9 + V10 + V11 + V12 + V13 + V15 + V16
<environment: 0x4ca6da8>
Warning message:
system call failed: Cannot allocate memory 

FSelector documentation built on May 2, 2019, 4:52 p.m.