Description Usage Arguments Value Examples
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.
1 |
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. |
An experiment object having all the rows of e1 and e2
1 2 3 4 5 6 7 8 9 10 | # 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.