Description Usage Arguments Value Examples
This function obtain a pairwise table comparing the methods among themselves for the specified metrics. It takes an testMultiplePairwise object as an input.
1 | tabularTestPairwise(ph, value = "pvalue", charForNAs = "-")
|
ph |
The input testMultiplePairwise object |
value |
Indicates the metric to be displayed ("pvalue", "wtl") |
charForNAs |
Indicates the character included when there is not comparison available |
An extabular object
1 2 3 4 5 6 7 8 9 10 11 12 13 | # First we create an experiment from the wekaExperiment problem and prepare
# it to apply the test:
experiment <- expCreate(wekaExperiment, name="test", parameter="fold")
experiment <- expReduce(experiment, "fold", mean)
experiment <- expInstantiate(experiment, removeUnary=TRUE)
# Then we perform a a testMultiplePairwise test procedure
test <- testMultiplePairwise(experiment, "accuracy", "max")
# Different tables can be obtained by using a range of metrics
tabularTestPairwise(test, "pvalue")
tabularTestPairwise(test, "wtl")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.