Re: [Matplotlib-users] adjusting width of subplot columns

2009-09-13 Thread Neil Crighton
per freem writes: > > hi all, > > i have a 3x2 subplot figure, and i would like to adjust the relative > width of the second column. in other words, if i have: > I set the axes positions by hand in these situations using add_axes(). So: fig = plt.figure() width1 = 0.3 width2 = 0.2 height = 0.

[Matplotlib-users] adjusting width of subplot columns

2009-09-11 Thread per freem
hi all, i have a 3x2 subplot figure, and i would like to adjust the relative width of the second column. in other words, if i have: import matplotlib.pyplot as plt plt.subplot(3, 2, 1) # plot stuff plt.subplot(3, 2, 2) # plot, etc... i want to make it so the second column occupies less width in