Description Usage Arguments Value Examples
Hypoteses Testing
Performs Statistical Tests
1 2 | hypotessesTesting(resultTable, testingMetric, method = "friedman",
reductionMethod = "mean", reductionOrder = "max", alpha = 0.05)
|
resultTable |
Table resulted from a MLAT::RunTests() call |
testingMetric |
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. |
alpha |
Test significance level. |
A list of type hypotesesTest.
1 2 3 4 5 6 7 8 9 10 11 12 | cmpTestsFuncsList <- GetAllMultClassAlgo()
task <- 'MultClass'
dataSetNames <- MLAT::GetDataSetsNames(task = task)
myResult <- RunTests(cmpTestsFuncsList = GetAllMultClassAlgo(),
task = task,
dataSetNames = dataSetNames)
hypotessesTesting(resultTable = myResult,
testingMetric = 'F1 Macro',
method = 'friedman',
reductionMethod = 'mean',
reductionOrder = 'max',
alpha = 0.05)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.