expExtend {exreport}R Documentation

Extend an experiment by adding new parameters

Description

This function extends an existing exreport experiment object by adding new parameters with fixed values.

Usage

expExtend(e, parameters)

Arguments

e

Input experiment

parameters

A list of strings containing the values of the new parameters, the name for each one of them will be given by the name of the corresponding object in the list.

Value

A modified exreport experiment object with additional parameters.

Examples

# We load the wekaExperiment problem as an experiment and then add a new param
# with a default value.

experiment <- expCreate(wekaExperiment, name="test", parameter="fold")
expExtend(experiment, list(discretization = "no"))

[Package exreport version 0.4.1 Index]