dataPoints: The Points coordinate. Each column contains a single point (column major).
reference: The reference point for computing R2-mtch (similar as reference for HV)
weights: The weights/direction to be used to compute the achievement scalarization. Each column contains a single weight vector. If no weight is supplied, weights are generated using Sobol sequences.
nWeight: Used only when no weights are supplied. An input for the sobol weight generation. This defines how many points to be generated.
Returns
The function return the R2-indicator of the set.
Examples
nPointToSample <-100nObjective <-3points <- matrix(runif(nPointToSample*nObjective), nrow = nObjective)# sample the pointsranks <- nsga2R::fastNonDominatedSorting(t(points))# non-dominated sortingpoints <- points[,ranks[[1]],drop=FALSE]# take only the non-dominated frontnPoints <- ncol(points)# check how many points are on the non-dominated frontreference <- rep(2,nObjective)compute_R2mtch(points,reference)
References
Ke Shang, Hisao Ishibuchi, Min-Ling Zhang, and Yiping Liu. 2018. A new R2 indicator for better hypervolume approximation. In Proceedings of the Genetic and Evolutionary Computation Conference (GECCO '18), Hernan Aguirre (Ed.). ACM, New York, NY, USA, 745-752. DOI: https://doi.org/10.1145/3205455.3205543