bar_stacked.py
来自「非原创。很好的python例子」· Python 代码 · 共 24 行
PY
24 行
#!/usr/bin/env python# a stacked bar plot with errorbarsfrom pylab import *N = 5menMeans = (20, 35, 30, 35, 27)womenMeans = (25, 32, 34, 20, 25)menStd = (2, 3, 4, 1, 2)womenStd = (3, 5, 2, 3, 3)ind = arange(N) # the x locations for the groupswidth = 0.35 # the width of the bars: can also be len(x) sequencep1 = bar(ind, menMeans, width, color='r', yerr=womenStd)p2 = bar(ind, womenMeans, width, color='y', bottom=menMeans, yerr=menStd)ylabel('Scores')title('Scores by group and gender')xticks(ind+width/2., ('G1', 'G2', 'G3', 'G4', 'G5') )yticks(arange(0,81,10))legend( (p1[0], p2[0]), ('Men', 'Women') )show()
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?