8000 Improve categorical example (#15123) · jklymak/matplotlib@00912ad · GitHub
[go: up one dir, main page]

Skip to content

Commit 00912ad

Browse files
timhoffmImportanceOfBeingErnest
authored andcommitted
Improve categorical example (matplotlib#15123)
1 parent 46186b9 commit 00912ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/lines_bars_and_markers/categorical_variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212
import matplotlib.pyplot as plt
1313

14-
data = {'apples': 10, 'oranges': 15, 'lemons': 5, 'limes': 20}
14+
data = {'apple': 10, 'orange': 15, 'lemon': 5, 'lime': 20}
1515
names = list(data.keys())
1616
values = list(data.values())
1717

0 commit comments

Comments
 (0)
0