10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a85c113 commit 62fdc1fCopy full SHA for 62fdc1f
doc/users/next_whats_new/bar_label_formatting.rst
@@ -8,7 +8,7 @@ The ``fmt`` argument of `~matplotlib.axes.Axes.bar_label` now accepts
8
9
import matplotlib.pyplot as plt
10
11
- fruit_names = ["Coffee", "Salted Caramel", "Pistachio"]
+ fruit_names = ['Coffee', 'Salted Caramel', 'Pistachio']
12
fruit_counts = [4000, 2000, 7000]
13
14
fig, ax = plt.subplots()
@@ -20,7 +20,7 @@ It also accepts callables:
20
21
.. code-block:: python
22
23
- animal_names = ["Lion", "Gazelle", "Cheetah"]
+ animal_names = ['Lion', 'Gazelle', 'Cheetah']
24
mph_speed = [50, 60, 75]
25
26
0 commit comments