change colors for each bins in histogram
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
bero
am 28 Feb. 2016
Bearbeitet: Marion Baques
am 2 Feb. 2022
Hi, I have attached sample data, I plot histogram for the sample data as: hist = histogram(sample)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/156121/image.jpeg)
I need to color each bin(group of values) in different, and put annotation text in figure what each color represent :
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/156123/image.jpeg)
2 Kommentare
Walter Roberson
am 28 Feb. 2016
Which MATLAB version are you using? This task got more difficult as of R2014b.
Akzeptierte Antwort
Walter Roberson
am 28 Feb. 2016
From R2014b onwards, the only way to do it is to bar() in each entry one at a time, specifying the color you want. Well, you could also use patch() or fill() or rectangle() to put in the bars; the point is that histogram objects do not allow you to change the bar colors individually now.
Weitere Antworten (1)
Srivathsan Iyengar
am 5 Dez. 2019
Bearbeitet: Srivathsan Iyengar
am 5 Dez. 2019
One way to do it is to overlay multiple histogram plots on the same axes, one plot for each bin. This makes sense for reasonable number of bins, not for large number of bins.
Here's an example code:
load sample.mat;
xValues = unique(sample);
binColors = [repmat(reshape(repmat(0:0.5:1,9,1),27,1),1,1) repmat(reshape(repmat(0:0.5:1,3,1),9,1),3,1) repmat(reshape(repmat(0:0.5:1,1,1),3,1),9,1)];
hf = figure; hax = axes; hold on;
legendStr = cell(1,length(xValues));
for i=1:length(xValues)
histogram(hax, sample(sample == xValues(i)), 'FaceColor',binColors(i,:));
legendStr(i) = {num2str(xValues(i))};
end
legend(legendStr);
5 Kommentare
Charmi Patel
am 1 Feb. 2022
Hello Marion,
Thank you for your solution. It was really helpful to me. But I get an error on the line colormap('jet',56) on R2021b version that first argument must be scalar axes or figure handle. Can you please confirm which version are you using? Also it would be great if you have some solution to this
Thanks!
Marion Baques
am 2 Feb. 2022
Hello Charmi,
I think the error comes from the way the colormap function is written. It is my mistake as I use the crameri colorscale (scientific colorscale). If you write "colormap(jet(56))", it works. I tried for me and it is working the same.
Hope this solves your problem!
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!