Many 2D histograms, single colorbar

2 次查看(过去 30 天)
Consider this minimal working example:
for i=1:4
numberPairs(i).matrix = randn(1000,2);
subplot (2,2,i)
h(i) = histogram2(numberPairs(i).matrix(:,1), numberPairs(i).matrix(:,2), 'DisplayStyle','tile', 'ShowEmptyBins','on');
end
% add single colorbar heatmap, for all subplots
h_colorbar = colorbar;
h_colorbar.Position = [ 0.9224 0.1093 0.0133 0.8159 ];
As far as I can see, the colorbar gets created subplot-wise, so its range of values reflects only the final matrix. However, the colors get normalized within each matrix, such that the highest count in each matrix is still bright yellow regardless of the value.
Instead, I'd like this heatmap legend to reflect the values in all subplots. Thus, if the highest-count cell in one subplot is 40, that should be a fainter yellow than the brightest cell in another subplot where the value is 50.
Perhaps this needs to be done not by customising the colorbar, but the 2D histograms themselves - but I don't know how...
Thanks in advance for any suggestions.

采纳的回答

Bjorn Gustavsson
Bjorn Gustavsson 2021-9-8
For that type of equalization I do someething like this:
for i1 = 1:4
numberPairs(i1).matrix = randn(1000,2);
subplot (2,2,i1)
h(i1) = histogram2(numberPairs(i1).matrix(:,1), numberPairs(i1).matrix(:,2), 'DisplayStyle','tile', 'ShowEmptyBins','on');
cx(i1,:) = caxis; % Save away the intensity limits
end
for i1 = 1:4
subplot (2,2,i1)
caxis([min(cx(:,1)),max(cx(:,2))]) % From the smallest low to the largest high
end
h_colorbar = colorbar;
h_colorbar.Position = [ 0.9224 0.1093 0.0133 0.8159 ];
HTH

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Distribution Plots 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by