Closed the-pawel-wojcik closed 2 weeks ago
I'm not quite sure I understand exactly what you're trying to do, but all square=True
does is call ax.set_aspect("equal")
on your axes. This is probably something you can make work using the matplotlib API directly before or after plotting with seaborn.
Hello!
Thank for building seaborn. It's plots are very pretty and quick to make.
I got myself into a problem when trying to add a second y axis to the heatmap. See this
See attached figures. When I set the
square=True
option. The addition of the second ax breaks the display:What I would like to get by adding the second ax is to keep the setup as you get when you only set
square=True
but with the chance to modify the ticks on the right. Something of the kind that you get when you use twinx but without using thesquare=True
option:Thanks Pawel