Clear Filters
Clear Filters

using findgroups and splitapply (or an alternative) to find the minimu value in a range of values

2 views (last 30 days)
I am using the below to find a Pareto Frontier of a large set of data (>1x10^8). The below basically pulls the minimum value of B from each distinct value of A. I am looking for help in expanding to the find the minimum value of B within a range of A values.
G = findgroups(A);
C = 1:numel(B);
OutC = splitapply(@(b,c) {c(b==min(b))}, B, C, G);
Out = cat(2, OutC{:}).';
The attached plot is the results, and is clearly NOT the actual pareto frontier. How can I implement this "binning" approach to find the minimum value of B in a range of A? Attached a subset of the data due to file size limitations
  2 Comments
Image Analyst
Image Analyst on 29 Jun 2018
Wow - what an interesting concept - I had to look it up because I'd not heard of it before. More interesting than most questions we see here.
Anyway, have you considered the boundary() function if you just want to find some kind of outer boundary for the scattered points?
Still Learning Matlab
Still Learning Matlab on 2 Jul 2018
I am looking only to identify the points closest to the x-axis on this figure such that for a mall range of A values, I identify the point with the minimum value of B.

Sign in to comment.

Accepted Answer

Jeff Miller
Jeff Miller on 30 Jun 2018
Couldn't you just form a new variable Agrp which has the A values grouped into whatever bins you want? Then repeat what you are already doing, but use Agrp instead of A. As a crude example,
Agrp = round(A);
G = findgroups(Agrp);
...

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!