Description Usage Arguments Details Examples
Prints all details about a PredictionMap object.
1 2 |
x |
A PredictionMap object generated by |
showMeta |
If TRUE the meta data of the PredictionMap object will be printed. |
showPred |
If TRUE the predictions of the PredictionMap object will be printed. |
... |
Further parameters |
Prints all details about a given PredictionMap object and information about the meta information as well as the predictions.
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)
# svm with linear kernel
predMap = predictionMap(data, labels, foldList = foldList,
classifier = tunePareto.svm(), kernel='linear')
print(predMap, showMeta=TRUE, showPred=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.