I have created a heatmap plot using in Julia by using the Plotly
with the Plots
package. I generate the heatmap with the following command heatmap(10^9 .* (height + deformation))
. Then, I get a plot that looks like this
The length of the x-axis and y-axis both range from 0 to 256, but nonetheless they do not have the same scale as seen from the rectangular shape of the heatmap. How can I make the scale of the x-axis and y-axis equal?