How can I don't display the x values labels in heat map?
18 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I don't want to display the x-values labels of the first figure (1995,1996,...,2005).

0 Kommentare
Akzeptierte Antwort
Star Strider
am 25 Apr. 2019
Try this:
data1 = randi(9, 3);
figure
h1 = heatmap(data1);
cdl = h1.XDisplayLabels; % Current Display Labels
h1.XDisplayLabels = repmat(' ',size(cdl,1), size(cdl,2)); % Blank Display Labels
Having the code you used to create those figures would help.
4 Kommentare
Weitere Antworten (0)
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!