expExtend {exreport} | R Documentation |
This function extends an existing exreport experiment object by adding new parameters with fixed values.
expExtend(e, parameters)
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. |
A modified exreport experiment object with additional parameters.
# 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"))