## Exhaustive search on the mtcars data
data(mtcars)
ES <- ExhaustiveSearch(mpg ~ ., data = mtcars, family = "gaussian")
## Summary data.frame of the top 5 models
resultTable(ES, 5)
## Return a data.frame of all stored models
res <- resultTable(ES)
str(res)
## Add custom characters for printing
resultTable(ES, 1, " <-> ")
Run the code above in your browser using DataLab