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