Edit colorbar of heatmap (string)
Ältere Kommentare anzeigen
Hi,
Is it possible to edit the colorbar of a heatmap such that it looks like the following image (rapidly created with paint ;) )

So the values aren't numeric but strings.
Thanks for help!
1 Kommentar
The handle to the colorbar in heatmap is inaccessible. Without the handle, you can't change properties to the colorbar; you can't even delete it. Even when you try to add a new colorbar, you cannot output the handle with a heatmap plot.
heatmap() in general is highly restrictive in the user's abilty to manipulate many of its properties. I used to use heatmap more frequently prior to these changes and have moved onto using imagesc() instead. Bummer.
Akzeptierte Antwort
Weitere Antworten (2)
Christian Karcher
am 28 Apr. 2020
Bearbeitet: Christian Karcher
am 28 Apr. 2020
The handle to the colorbar is accessible, and with it all modifications:
figure;
heatmap(rand(5))
axs = struct(gca); %ignore warning that this should be avoided
cb = axs.Colorbar;
cb.TickLabels = {'p<0.1','p>0.1','...'};
7 Kommentare
Adam Danz
am 28 Apr. 2020
You can't assign the tick labels without first assigning the ticks.
Christian Karcher
am 28 Apr. 2020
well... you can?
It just replaces the automatically generated ticks from the heatmap. It's a working minimal example, feel free to copy & paste it into matlab and see for yourself.
If you want to have specific tick replacement, of course you should re-define the ticks first, but it should really just be a minimal example, not a full customizable colorbar wondertool ;)
giannit
am 12 Mai 2021
many thanks! this should be the accepted answer
Alexander Krauss
am 28 Sep. 2022
Dear Christian,
is it also possible to set the colorbar to a percent scale?
I know it works for standard colormaps, but I don't know whether you can change it in a heatmap.
Would be very glad if you could help me out. :)
Best regards,
Alex
Christian Karcher
am 29 Sep. 2022
Bearbeitet: Christian Karcher
am 29 Sep. 2022
I am not aware of an option to directly format a value to percentage.
But the ticks can be directly reformated. So it would be a two-stage process:
- multiply your data by 100
- add a percent sign to the labels
figure;
heatmap(rand(5)*100); % convert data to percent
axs = struct(gca); %ignore warning that this should be avoided
cb = axs.Colorbar;
cb.Ruler.TickLabelFormat = '%g%%'; % add percent sign to labels
See https://de.mathworks.com/help/matlab/matlab_prog/formatting-strings.html for all your formatting needs.
Alexander Krauss
am 29 Sep. 2022
Bearbeitet: Alexander Krauss
am 29 Sep. 2022
Great solution, thanks a lot (also for the rapid reply) ! :)
Best regards,
Alex
Muhanned Alsaif
am 21 Aug. 2023
Bearbeitet: Muhanned Alsaif
am 21 Aug. 2023
another way to access the colorbar can be found in the following post:
Tony Castillo
am 19 Dez. 2023
0 Stimmen
Is it possible to add a label to that colour bar which is directly created in a heatmap? I mean we can tag a SURF plot (the colourbar because it is separated from the surfplot), but I have not found the manner of doing the same in the colorbar of the heatmap.
Kategorien
Mehr zu Data Distribution Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
