Re: [Matplotlib-users] Round pie in non square figure size

2011-12-07 Thread Tony Yu
On Wed, Dec 7, 2011 at 11:08 AM, claudius wrote: > > I would like to draw a round pie in a rectangle figure. At the moment I'm > using something like: > >fig = plt.figure( figsize = figsize, dpi=inch) > ># plot actually >ax = fig.add_subplot( 1, 1, 1 ) >ax.pie( val

[Matplotlib-users] Round pie in non square figure size

2011-12-07 Thread claudius
I would like to draw a round pie in a rectangle figure. At the moment I'm using something like: fig = plt.figure( figsize = figsize, dpi=inch) # plot actually ax = fig.add_subplot( 1, 1, 1 ) ax.pie( value_list, labels = labels_list, **kwargs ) plt.savefig