Description Usage Arguments Value See Also Examples
View source: R/moo_domination.R
The function checks whether every point from the second set of points is dominated by at least one point from the first set.
1 | set_dominates(x, y)
|
x |
[ |
y |
[ |
Single logical value.
Other Pareto-dominance checks:
dominated()
,
dominates()
,
which_dominated()
Other multi-objective tools:
dominated()
,
dominates()
,
which_dominated()
1 2 3 4 | x = matrix(c(1, 1, 2, 2, 1, 3), byrow = FALSE, ncol = 3L)
y = matrix(c(3, 4, 2, 2, 5, 6, 7, 7), byrow = FALSE, ncol = 4L)
set_dominates(x, y)
set_dominates(y, x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.