summary.Conf {ORION} | R Documentation |
Summary of conf
Description
summary.Conf
returns a summarizing overview of a Conf object.
Usage
## S3 method for class 'Conf'
summary(object = NULL, ...)
Arguments
object |
A Conf object as it is returned by |
... |
Further arguments passed from other methods. |
Details
This function gives an overview of the Conf object. The overall number of classes, the highest and lowest sensitivities of the first class as well as the highest and lowest performance of the second class are recorded.
See Also
conf
, summary.PredictionMap
, summary.Subcascades
, summary.Groupwise
, summary.ConfusionTable
Examples
library(TunePareto)
data(esl)
data = esl$data
labels = esl$labels
foldList = generateCVRuns(labels = labels,
ntimes = 2,
nfold = 2,
leaveOneOut = FALSE,
stratified = TRUE)
predMap = predictionMap(data, labels, foldList = foldList,
classifier = tunePareto.svm(), kernel='linear')
conf = conf(predMap)
summary(conf)
[Package ORION version 1.0.3 Index]