I have a data set with two columns. The variable names are cost 1 and cost 2. I want to minimize both cost 1 and cost 2 using the Pareto optimization method. So, while implementing NSGA II I have two objective functions i.e. cost 1 values and cost 2 values but I don't have any variables in it since my data set already contains the cost values which are calculated by using the variable values (see the data set below). So, what I want is find the pair of cost values [cost 1,cost 2] which lie in the Pareto front. Can I perform NSGA II for this scenario?
data = np.array([[97, 23], [55, 77], [34, 76], [80, 60], [99, 4], [81, 5], [ 5, 81], [30, 79], [15, 80], [70, 65], [90, 40], [40, 30], [30, 40], [20, 60], [60, 50], [20, 20], [30, 1], [60, 40], [70, 25], [44, 62], [55, 55], [55, 10], [15, 45], [83, 22], [76, 46], [56, 32], [45, 55], [10, 70], [10, 30], [79, 50]])