tabularTestPairwise: Display pairwise information about a multiple test between...

Description Usage Arguments Value Examples

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

1
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

 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")

exreport documentation built on May 1, 2019, 10:13 p.m.