expRemoveDuplicated: Remove duplicated rows from an experiment

Description Usage Arguments Details Value Examples

View source: R/fun_expRemoveDuplicated.R

Description

This function removes duplicated rows of a given experiment attending to the interaction of methods, problems and parameters (but no outputs).

Usage

1
expRemoveDuplicated(e, tol = 1e-09)

Arguments

e

The experiment to be analised

tol

The tolerance for numeric values to check if two outputs are numerically equal or not.

Details

The duplicated rows found are compared among themselves to determine if there is divergence between the outputs, if the rows are not consistent a warning is raised to note this difference.

Value

an experiment object

Examples

1
2
3
4
5
6
7
8
# We duplicate some of the rows of a given experiment:
e <- expCreate(wekaExperiment, parameters="fold", name="Test Experiment")
redundant <- expCreate(wekaExperiment[wekaExperiment$method=="NaiveBayes",], 
                       parameters="fold", name="Test Experiment")
e2 <- expConcat(e,redundant)

# Now we remove those duplicates:
expRemoveDuplicated(e2)

jacintoArias/exreport documentation built on June 6, 2021, 3:40 a.m.