explore {classifly} | R Documentation |
Default method for exploring objects
explore(model, data, n=10000, method="nonaligned", advantage=TRUE, ...)
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 |
... |
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.
Hadley Wickham <h.wickham@gmail.com>
generate_classification_data
, http://had.co.nz/classifly
bsvm <- best.svm(Species~., data = iris, gamma = 2^(-1:1), cost = 2^(2:+ 4), probability=TRUE) explore(bsvm, iris)