Learn R Programming

exreport (version 0.4.1)

tabularTestPairwise: Display pairwise information about a multiple test between the methods

Description

This function obtain a pairwise table comparing the methods among themselves for the specified metrics. It takes an testMultiplePairwise object as an input.

Usage

tabularTestPairwise(ph, value = "pvalue", charForNAs = "-")

Arguments

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

Value

An extabular object

Examples

Run this code
# 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")

Run the code above in your browser using DataLab