Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
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 comentarios
Image Analyst
Image Analyst el 29 de Jun. de 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 el 2 de Jul. de 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.

Iniciar sesión para comentar.

Respuesta aceptada

Jeff Miller
Jeff Miller el 30 de Jun. de 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);
...

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by