Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f734644

Browse files
committed
updated bar chart
svn path=/trunk/matplotlib/; revision=114
1 parent 30c9d29 commit f734644

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/barchart_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
width = 0.35 # the width of the bars
1010
p1 = bar(ind, menMeans, width, color='r', yerr=menStd)
1111

12-
womenMeans = (-25, 32, 34, 20, 25)
12+
womenMeans = (25, 32, 34, 20, 25)
1313
womenStd = (3, 5, 2, 3, 3)
1414
p2 = bar(ind+width, womenMeans, width, color='y', yerr=womenStd)
1515

0 commit comments

Comments
 (0)