deepFirst: Deep First Search (exhaustive search)

Description Usage Value Author(s) References Examples

View source: R/exhaustiveSearch.R

Description

Generates a search function based on the deep first search. This function is called internally within the searchAlgorithm function. Deep First Search searches the whole features subset in deep first order \insertCiteKozen1992FSinR.

Usage

1

Value

Returns a search function that is used to guide the feature selection process.

Author(s)

Francisco Aragón Royón

References

\insertAllCited

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
## Not run:  

## The direct application of this function is an advanced use that consists of using this 
# function directly and performing a search process in a feature space
## Classification problem

# Generates the filter evaluation function
filter_evaluator <- filterEvaluator('determinationCoefficient')

# Generates the search function with Deep first
dfs_search <- deepFirst()
# Performs the search process directly (parameters: dataset, target variable and evaluator)
dfs_search(iris, 'Species', filter_evaluator)

## End(Not run)

FSinR documentation built on Nov. 23, 2020, 5:10 p.m.