expConcat {exreport} | R Documentation |
Concatenate rows of matching experiments
Description
This function concatenates two experiments with the same configuration of parameter an outputs. At least one common output must be present, the rest of them will be removed from the resulting experiment. Different methods and problems can be present.
Usage
expConcat(e1, e2, name = NULL, tol = 1e-09)
Arguments
e1 |
First experiment object to concat. |
e2 |
Second experiment object to concat. Must have the same configuration than e1. |
name |
Optional name, if not provided the new experiment will be called "e1_name + e2_name" |
tol |
Tolerance value for duplicate checking. |
Value
An experiment object having all the rows of e1 and e2
Examples
# In this example we turn the wekaExperiment into two different experiments,
# with different parameter values to combine them:
df_no <- wekaExperiment[wekaExperiment$featureSelection=="no",]
df_yes <- wekaExperiment[wekaExperiment$featureSelection=="yes",]
exp_yes <- expCreate(df_yes, name="fss-yes", parameter="fold")
exp_no <- expCreate(df_no, name="fss-no", parameter="fold")
expConcat(exp_yes, exp_no)
[Package exreport version 0.4.1 Index]