explore {classifly}R Documentation

Explore default

Description

Default method for exploring objects

Usage

explore(model, data, n=10000, method="nonaligned", advantage=TRUE, ...)

Arguments

model classification object
data data set used with classifier
n number of points to generate when searching for boundaries
method method to generate points, see generate_data
advantage only display boundaries
...

Details

The default method currently works for classification functions.

It generates a data set filling the design space, finds class boundaries (if desired) and then displays in a new ggobi instance.

Author(s)

Hadley Wickham <h.wickham@gmail.com>

See Also

generate_classification_data, http://had.co.nz/classifly

Examples

bsvm <- best.svm(Species~., data = iris, gamma = 2^(-1:1), cost = 2^(2:+ 4), probability=TRUE)
explore(bsvm, iris)

[Package classifly version 0.2.3 Index]