[matplotlib-devel] bug in boxplot() xticklabels

2014-09-24 Thread Michael Kaufman
Hi all, There's a bug with the xticklabels using boxplot: a = [[1,2,3,4],[1,2,3,4],[1,2,3,4]] clf() boxplot(a, False, 'k', positions=[1000,1500,2000], widths=50) xlim(750,2250) draw() With master branch, I see the xticklabels show as "1", "2", "3" with 1.3.x I see "1000", "1500", "2000" as expec

Re: [matplotlib-devel] bug in boxplot() xticklabels

2014-09-24 Thread Thomas Caswell
Can you please make an issue on github? On Wed, Sep 24, 2014 at 1:51 PM, Michael Kaufman wrote: > Hi all, > > There's a bug with the xticklabels using boxplot: > > a = [[1,2,3,4],[1,2,3,4],[1,2,3,4]] > clf() > boxplot(a, False, 'k', positions=[1000,1500,2000], widths=50) > xlim(750,2250) > draw()