Is there any way to create a plot like the one in figure below, having an axis scale of 1:1. By 1:1 I mean that if two ticks with values 100-200 have a distance on screen of 2cm on the x axis, it should be the same on the y axis. Instead as you can see in the figure, ticks on the x axis are much larger. 
-
When you find a answer that is helpful to you and answers your question, you may want to accept an answer. Of course, it is not an obligation.Yamaneko– Yamaneko2012-10-24 20:39:02 +00:00Commented Oct 24, 2012 at 20:39
Add a comment
|
1 Answer
ax.set_aspect('equal') after the fact for each axis ax = fig.add_subplot(111, aspect='equal') when you generate the axes. example/doc