Matplotlib:条形图

日期2008-01-03(最后修改),2006-08-09(创建)

使用 bar 函数创建条形图:http://matplotlib.sourceforge.net/matplotlib.pylab.html#-bar

以下是一个创建带有误差条和居中标签的条形图的示例脚本。

在 [2]
#!/usr/bin/env python
import numpy as na

from matplotlib.pyplot import *

labels = ["Baseline", "System"]
data =   [3.75               , 4.75]
error =  [0.3497             , 0.3108]

xlocations = na.array(range(len(data)))+0.5
width = 0.5
bar(xlocations, data, yerr=error, width=width)
yticks(range(0, 8))
xticks(xlocations+ width/2, labels)
xlim(0, xlocations[-1]+width*2)
title("Average Ratings on the Training Set")
gca().get_xaxis().tick_bottom()
gca().get_yaxis().tick_left()

show()

部分作者:Unknown[74],GaelVaroquaux,Unknown[87]

附件