Calculate median values of slices of array associated with histogram bins
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
dormant
am 15 Nov. 2023
Kommentiert: Star Strider
am 15 Nov. 2023
I have an array (array1) which I want to put into histogram bins. I have a second array (array2) which is the same length.
I can sum the values of array2 in each bin with this:
[count, edges, idx] = histcounts(array1,edges);
binsums = accumarray(idx,array2);
But how can I calculate the median values of array2 in each bin?
0 Kommentare
Akzeptierte Antwort
Star Strider
am 15 Nov. 2023
I would use another accumarray call:
binmedians = accumarray(idx+1, (1:numel(idx)).', [], @(x)median(array2(x)))
Creating data and correcting for ‘idx’ having 0 for some elements (making them inappropriate index values) —
array1 = randn(1E+3,1);
array2 = randn(1E+3,1);
edges = 1:9;
[count, edges, idx] = histcounts(array1,edges);
binsums = accumarray(idx+1,array2)
binmedians = accumarray(idx+1, (1:numel(idx)).', [], @(x)median(array2(x)))
.
2 Kommentare
Star Strider
am 15 Nov. 2023
As always, my pleasure!
One such:
binmedians = accumarray(idx+1, (1:numel(idx)).', [], @(x)median(array2(x),'omitmissing'))
There are several others.
.
Weitere Antworten (1)
Steven Lord
am 15 Nov. 2023
If all you want is the bin numbers, you could also use the discretize function instead of histcounts.
Siehe auch
Kategorien
Mehr zu Data Distribution Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!