Re: [Matplotlib-users] mpl sphinx extension

2009-05-05 Thread Timmie
> I believe that it is just moved to another directory > (lib/matplotlib/sphinxext). Yes, thanks. Its here: http://matplotlib.svn.sourceforge.net/viewvc/matplotlib/ trunk/matplotlib/lib/matplotlib/sphinxext/ -- The NEW

[Matplotlib-users] mpl sphinx extension

2009-05-04 Thread Timmie
svn: extensions = ['matplotlib.sphinxext.mathmpl', 'math_symbol_table', 'sphinx.ext.autodoc', 'matplotlib.sphinxext.only_directives', 'matplotlib.sphinxext.plot_directive', 'inheritance_diagram',

[Matplotlib-users] barchart: center xticklabels for only one data set

2009-03-05 Thread Timmie
below the bar one data set? Thanks in advance, Timmie modified bar charts demo #!/usr/bin/env python # a bar plot with errorbars import numpy as np import matplotlib.pyplot as plt N = 5 menMeans = (20, 35, 30, 35, 27) menStd = (2, 3, 4, 1, 2) ind = np.arange(N) # the x locations for

[Matplotlib-users] autolabels for barcharts

2009-03-05 Thread Timmie
text labels for rect in rects: #~ print rect height = rect.get_height() print height ax.text(rect.get_x()+rect.get_width()/2., 1.05*height, '%d'%int(height), ha='center', va='bottom') Thanks in advance for t