It looks like pie() omits slices that are smaller than a few percent. In the following example, only one pie slice is drawn:
>>> import pylab >>> pylab.pie([98,2]) >>> pylab.show() The missing pie slice has neither a color fill nor a boundary (the arc of the pie slice is missing). By contrast, the following works as expected: >>> pylab.pie([97,3]) It seems that the problem occurs for small slices, apparently the threshold is around 2-3%. Any ideas? Thanks in advance, James ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users