Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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. plot

share|improve this question
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. – Victor Hugo Oct 24 '12 at 20:39

1 Answer

up vote 3 down vote accepted

ax.set_aspect('equal') after the fact for each axis ax = fig.add_subplot(111, aspect='equal') when you generate the axes. example/doc

share|improve this answer
Yep, that worked! Thanks! – memecs Oct 25 '12 at 15:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.