Sure is! You just need to reset the tick labels.
EDIT with answer and picture (can be done similarly with hist
):
x = scipy.arange(4)
y = scipy.array([4,7,6,5])
f = pylab.figure()
ax = f.add_axes([0.1, 0.1, 0.8, 0.8])
ax.bar(x, y, align='center')
ax.set_xticks(x)
ax.set_xticklabels(['Aye', 'Bee', 'Cee', 'Dee'])
f.show()
(source: stevetjoa.com)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…