8000 updated bar chart · matplotlib/matplotlib@f734644 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit f734644

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)
0