| summary.PredictionMap | R Documentation |
summary.PredictionMap returns a summarizing overview of a PredictionMap object.
## S3 method for class 'PredictionMap'
summary(object = NULL, ...)
object |
A PredictionMap object as it is returned by |
... |
Further arguments passed from other methods. |
This function gives an overview of the PredictionMap object. A short summary about the utilized data and labels is given as well as the number of runs and folds of the cross-validation. The summary also includes if the prediction map was generated in parallel and the name of the utilized TunePareto classifier as well as its specified parameters.
predictionMap, summary.Subcascades, summary.Groupwise, summary.Conf, summary.ConfusionTable
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')
summary(predMap)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.