Borrar filtros
Borrar filtros

Heatmap Chart - Depict Squares rather than Rectangles

35 visualizaciones (últimos 30 días)
Dario Walter
Dario Walter el 23 de Sept. de 2019
Comentada: mkarikom el 21 de Abr. de 2020
Hey guys,
I have a heatmap object h and would like to depict squares rather than rectangles (see appendix). The heatmap properties (https://de.mathworks.com/help/matlab/ref/matlab.graphics.chart.heatmapchart-properties.html) do not provide any help.
Do you have an idea?
Thank you very much!
  2 comentarios
Walter Roberson
Walter Roberson el 23 de Sept. de 2019
I wonder if it would help to use
axis equal
Dario Walter
Dario Walter el 23 de Sept. de 2019
Hey Walter,
thanks for your quick reply. Unfortunately, axis equal does not work for heatmap objects :/.

Iniciar sesión para comentar.

Respuesta aceptada

Adam Danz
Adam Danz el 23 de Sept. de 2019
Editada: Adam Danz el 23 de Sept. de 2019
It drives me nutz that heatmap properties are special cases. To set the aspect ratio of the heatmap, you need to adjust the axis or figure size based on the number or rows & columns. Below are two functional demos. The first adjusts the axis size and recenters it. The second adjusts the figure size instead. I recommend the first method so the heatmap title and other graphics won't potentially expand beyond the figure boundaries.
Method 1: Adjust axis size and re-center
% Create heatmap using built-in Matlab data
load patients
tbl = table(LastName,Age,Gender,SelfAssessedHealthStatus,...
Smoker,Weight,Location);
h = heatmap(tbl,'Smoker','SelfAssessedHealthStatus');
% Temporarily change axis units
originalUnits = h.Units; % save original units (probaly normalized)
h.Units = 'centimeters'; % any unit that will result in squares
% Get number of rows & columns
sz = size(h.ColorData);
% Change axis size & position;
originalPos = h.Position;
% make axes square (not the table cells, just the axes)
h.Position(3:4) = min(h.Position(3:4))*[1,1];
if sz(1)>sz(2)
% make the axis size more narrow and re-center
h.Position(3) = h.Position(3)*(sz(2)/sz(1));
h.Position(1) = (originalPos(1)+originalPos(3)/2)-(h.Position(3)/2);
else
% make the axis size shorter and re-center
h.Position(4) = h.Position(4)*(sz(1)/sz(2));
h.Position(2) = (originalPos(2)+originalPos(4)/2)-(h.Position(4)/2);
end
% Return axis to original units
h.Units = originalUnits;
Method 2: Adjust figure size
% Create heatmap using built-in Matlab data
load patients
tbl = table(LastName,Age,Gender,SelfAssessedHealthStatus,...
Smoker,Weight,Location);
h = heatmap(tbl,'SelfAssessedHealthStatus','Smoker');
% ^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^ switched from method 1
% Temporarily change figure units
fh = gcf(); %if you don't already have the figure handle
originalUnits.fig = fh.Units; % save original units (probaly normalized)
originalUnits.ax = h.Units;
fh.Units = 'centimeters'; % any unit that will result in squares
h.Units = 'Normalize';
% Get number of rows & columns
sz = size(h.ColorData);
% make axes square (not the table cells, just the axes)
h.Position(3:4) = min(h.Position(3:4))*[1,1];
fh.InnerPosition(3:4) = min(fh.InnerPosition(3:4))*[1,1];
% Change figure position;
if sz(1)>sz(2)
% make the figure size more narrow
fh.InnerPosition(3) = fh.InnerPosition(3)*(sz(2)/sz(1));
else
% make the figure size shorter
fh.InnerPosition(4) = fh.InnerPosition(4)*(sz(1)/sz(2));
end
% return original figure units
fh.Units = originalUnits.fig;
h.Units = originalUnits.ax;
  3 comentarios
Adam Danz
Adam Danz el 23 de Sept. de 2019
Ah, so the number of rows are the same as the number of columns in your heatmap, then (unlike in the demo). Glad I could help!
mkarikom
mkarikom el 21 de Abr. de 2020
This is very helpful, spent all morning trying to figure out why subfigures, tiled objects, etc wouldn't respond as expected.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Distribution Plots en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by