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.
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D

Setting the aspect ratio works for 2d plots:

ax = plt.axes()
ax.plot([0,1],[0,10])
ax.set_aspect('equal','box')

But does not for 3d:

ax = plt.axes(projection='3d')
ax.plot([0,1],[0,1],[0,10])
ax.set_aspect('equal','box')

Is there a different syntax for the 3d case, or it's not implemented?

share|improve this question

4 Answers

up vote 3 down vote accepted

My understanding is basically that this isn't implemented yet. I'm also hoping that it is implemented soon. See This link for a possible solution (I haven't tested it myself).

share|improve this answer
Wow, great find, that thread. Thanks! – crippledlambda Nov 15 '11 at 19:52

If you know the bounds, eg. +-3 centered around (0,0,0), you can add invisible points like this:

import numpy as np
import pylab as pl
from mpl_toolkits.mplot3d import Axes3D
fig = pl.figure()
ax = fig.gca(projection='3d')
ax.set_aspect('equal')
MAX = 3
for direction in (-1, 1):
    for point in np.diag(direction * MAX * np.array([1,1,1])):
        ax.plot([point[0]], [point[1]], [point[2]], 'w')
share|improve this answer
In essence, manually create a cube... not a bad way to go... – crippledlambda Mar 7 '12 at 15:09
This is a good hack until matplotlib supports the aspect lock. Worked for me. – BlessedKey Jun 30 '12 at 9:59
Good idea - worked for me. Just my opinion, but this doesn't seem to be an aspect ratio problem, this is a bounding box issue. Is there some way to simply set the extent? – astromax Apr 23 at 17:24

Looks like this feature has since been added so thought I'd add an answer for people who come by this thread in the future like I did:

fig = plt.figure(figsize=plt.figaspect(0.5)*1.5) #Adjusts the aspect ratio and enlarges the figure (text does not enlarge)
ax = fig.gca(projection='3d')

figaspect(0.5) makes the figure twice as wide as it is tall. Then the *1.5 increases the size of the figure. The labels etc won't increase so this is a way to make the graph look less cluttered by the labels.

share|improve this answer

This question is practically a duplicate of this other one, where they already presented the following solution (slightly changed here):

edit site-packages\mpl_toolkits\mplot3d\axes3d.py:

if getattr(self, 'pbaspect', False):
    self.pbaspect = [1.,1.,1.]
xmin, xmax = self.get_xlim3d() / self.pbaspect[0]
ymin, ymax = self.get_ylim3d() / self.pbaspect[1]
zmin, zmax = self.get_zlim3d() / self.pbaspect[2]

then add one line to set pbaspect:

ax = fig.gca(projection = '3d')
ax.pbaspect = [2.0, 0.6, 0.25]
share|improve this answer
1  
Please check the date when this question was posted. The functionality was not implemented at the time, and the other question you reference succeeds this one. However, nice to know it's finally been implemented. – crippledlambda yesterday

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.