caret (version 5.07-001)

sbfControl: Control Object for Selection By Filtering (SBF)

Description

Controls the execution of models with simple filters for feature selection

Usage

sbfControl(functions = NULL, 
           method = "boot", 
           saveDetails = FALSE, 
           number = ifelse(method %in% c("cv", "repeatedcv"), 10, 25),
           repeats = ifelse(method %in% c("cv", "repeatedcv"), 1, number),
           verbose = FALSE, 
           returnResamp = "all", 
           p = 0.75, 
           index = NULL, 
           timingSamps = 0)

Arguments

Value

  • a list that echos the specified arguments

code

nbSBF

itemize

  • score

item

  • x
  • y
  • x
  • y

Details

Simple filter-based feature selection requires function to be specified for some operations.

The fit function builds the model based on the current data set. The arguments for the function must be:

  • x
{ the current training set of predictor data with the appropriate subset of variables (i.e. after filtering)} y{ the current outcome data (either a numeric or factor vector)} ...{ optional arguments to pass to the fit function in the call to sbf}

See Also

sbf, caretSBF, lmSBF, rfSBF, treebagSBF, ldaSBF and nbSBF