criterionPoints {gMOIP} | R Documentation |
Calculate the criterion points of a set of points and ranges to find the set of non-dominated points (Pareto points) and classify them into extreme supported, non-extreme supported, non-supported.
Description
Calculate the criterion points of a set of points and ranges to find the set of non-dominated points (Pareto points) and classify them into extreme supported, non-extreme supported, non-supported.
Usage
criterionPoints(pts, obj, crit, labels = "coord")
Arguments
pts |
A data frame with a column for each variable in the solution
space (can also be a |
obj |
A p x n matrix(one row for each criterion). |
crit |
Either |
labels |
If |
Value
A data frame with columns x1, ..., xn, z1, ..., zp, lbl (label), nD (non-dominated), ext (extreme), nonExt (non-extreme supported)
.
Author(s)
Lars Relund lars@relund.dk
Examples
A <- matrix( c(3, -2, 1, 2, 4, -2, -3, 2, 1), nc = 3, byrow = TRUE)
b <- c(10,12,3)
pts <- integerPoints(A, b)
obj <- matrix( c(1,-3,1,-1,1,-1), byrow = TRUE, ncol = 3 )
criterionPoints(pts, obj, crit = "max", labels = "numb")
[Package gMOIP version 1.5.2 Index]