Description Usage Arguments Value Examples
Reduce Results
Reduces result table by parameter
1 2 | ReduceResults(resultTable, reductionMetric, reductionMethod,
reductionOrder = "max")
|
resultTable |
Table resulted from a MLAT::RunTests() call |
reductionMetric |
A decision metric, must have been selected in MLAT::RunTests() function call. |
reductionMethod |
A reduction method, can be 'mean' or 'median'. |
reductionOrder |
The reduction Order of selected values, max or min. |
A reduced Table of type testResultTable .
1 2 3 4 5 6 7 8 9 10 | cmpTestsFuncsList <- GetAllMultClassAlgo()
task <- 'MultClass'
dataSetNames <- c('Iris', 'PimaIndiansDiabetes')
myResult <- RunTests(cmpTestsFuncsList = GetAllMultClassAlgo(),
task = 'MultClass',
dataSetNames = c('Iris', 'PimaIndiansDiabetes'))
reducedTable <- ReduceResults(resultTable = myResult,
reductionMetric = 'Accuracy Macro',
reductionMethod = 'mean',
reductionOrder = 'max' )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.