| Combinator | R Documentation |
Helps to find all possible combinations for a given set of values.
combinationslist Once run, holds all valid parameter combinations as named lists.
epsfloat Numerical precision to require when checking the functional group weight sum criterion.
create_combinations()Find possible combinations
Combinator$create_combinations(param_values)
param_valuesA list giving all options for the parameter values which are to be combined. As an example:
list(w_FGA = c(0, 0.5, 1), w_FGB = c(0, 0.5, 1), NI = c(0.5, 0.9))
This would generate the combinations
| w_FGA | w_FGB | NI |
| 0 | 1 | 0.5 |
| 0 | 1 | 0.9 |
| 0.5 | 0.5 | 0.5 |
| 0.5 | 0.5 | 0.9 |
| 1 | 0 | 0.5 |
| 1 | 0 | 0.9 |
epsPrecision to be used when checking if the sum citerion of the functional groups (w_FGA + w_FGB + w_FGC + w_FGD = 1) is fulfilled.
combinations A list containing vectors of parameter value combinations.
clone()The objects of this class are cloneable with this method.
Combinator$clone(deep = FALSE)
deepWhether to make a deep clone.
create_combinations()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.