Questions tagged [pareto-optimality]

23 questions
0
votes
0 answers

python differences with random.pareto

Any thoughts on why the distribution created by np.random.pareto based on the alpha manually calculated in this code is slightly different from original distribution? Could this mean a different distribution is more effective? plt.hist(data['sdev'],…
jdhower33
  • 1
  • 1
0
votes
1 answer

Normalize two arrays with second array the base for normalizing first array

In order to find the quality indicators like Generational Distance, Inverted Generational Distance, Epsilon Indicator, and HyperVolume for a Pareto front I want to normalize the values of approximation front obtained on solving the algorithm based…
vp_050
  • 583
  • 2
  • 4
  • 16
0
votes
1 answer

ggplot display Pareto front only for the points that belong to a specific level

Libraries being used install.packages("rPref") install.packages("dplyr") install.packages("igraph") install.packages("ggplot") Taking mtcars dataset from R as an example. In order to find the Pareto frontier and level value one establish the…
Gonçalo Peres
  • 11,752
  • 3
  • 54
  • 83
0
votes
1 answer

Pareto Optimal for more than four variables

I have a data frame with multiple outcomes, each with five variables, that I would like to optimize in R. I used rPref but this has a maximum of 4 variables to optimize. Does anyone know how to do this with more than four?
0
votes
1 answer

how to get a knee point solution from pareto front

I am using a python package DEAP to run NSGA_II algorithm for multi-objective optimization. The out put a a set of pareto optimal solutions in (objective space and parameter space). My question is: How can I code a simple python code to get the knee…
Dr. Zezo
  • 395
  • 2
  • 17
0
votes
0 answers

Multiple states being Pareto Optimal

Assuming we a 2 player game and each of them have 2 options. So there are 4 states and each of them have the same payoff. So in such a case, how can we say that all of the states as Pareto Optimal ? Based on my reading, Pareto Optimality requires…
user3656142
  • 437
  • 3
  • 14
0
votes
1 answer

Does OptaPlanner have a "built-in" way to perform multi-unit score normalization?

At the moment, my problem has four metrics. Each of these measures something entirely different (each has different units, a different range, etc.) and each is weighted externally. I am using Drools for scoring. I only have only one score level…
Ryan Moser
  • 123
  • 1
  • 12
-1
votes
2 answers

Can any one help me fix this legend issue?

Can any expert help me merge the following legend? I would like all the two legends to be merged Can any expert help me merge the following legend? I would like all the two legends to be merged def dominates(bestRouteTime, num_buses): dominating…
1
2