Re: [matplotlib-devel] displaying ticklabels on a graph

2011-04-30 Thread John Hunter
On Wed, Apr 27, 2011 at 4:17 AM, Clyng11 wrote: > > I run this code, but labels do not appear under the ticks. > >      # label the X ticks with years >      self.mpl.canvas.ax.set_xticks(np.arange(len(years))+width/2, > [int(year) for year in years]) >      self.mpl.canvas.ax.set_xticklabels([str

[matplotlib-devel] move bundled CXX folder, allow to optionally use system installed files

2011-04-30 Thread Julian Taylor
Hi, many GNU/Linux distributions discourage to bundle other software like matplotlib does with PyCXX. It is understandable you may not want additionally support each new version of the bundled software. But you should give the distribution package maintainers an easy way to use the version availabl

[matplotlib-devel] displaying ticklabels on a graph

2011-04-30 Thread Clyng11
I run this code, but labels do not appear under the ticks. # label the X ticks with years self.mpl.canvas.ax.set_xticks(np.arange(len(years))+width/2, [int(year) for year in years]) self.mpl.canvas.ax.set_xticklabels([str(year) for year in years]) I Need an help. Thanks. --