Description Usage Arguments Details Examples
Prints all details about a Conf object.
1 2 |
x |
A Conf object as it is returned by |
printfC |
If TRUE, the sensitivities of the first classes are printed (TP = true positives). |
printsC |
If TRUE, the values of sC are printed (TN = true negatives). The values of sC correspond to the rate of samples of a given class (column), which are assigned to the second class of the base classifier (row). |
... |
Further parameters |
Prints all details about a given Conf object. A Conf object provides the conditional prediction rates of all base classifiers applied to all classes.
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)
print(conf)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.