summary.Conf: Summary of conf

Description Usage Arguments Details See Also Examples

View source: R/summary.R

Description

summary.Conf returns a summarizing overview of a Conf object.

Usage

1
2
## S3 method for class 'Conf'
summary(object = NULL, ...)

Arguments

object

A Conf object as it is returned by conf-function.

...

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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
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)

ORION documentation built on Feb. 7, 2022, 5:15 p.m.