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

Skip to content

Commit d88e10e

Browse files
committed
Leave out barh from the basic plot types.
`bar` / `barh` was the only plot type mentioning two functions, but the plot only showed the vertial one anyway. IHMO we can leave out `barh`. It's mentionend in the "See also" section of `bar`. (But I'm open to leaving a comment in the plot type description if desired - I mainly want to remove it from the title.)
1 parent ecba9d2 commit d88e10e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plot_types/basic/bar.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""
2-
===============================
3-
bar(x, height) / barh(y, width)
4-
===============================
2+
==============
3+
bar(x, height)
4+
==============
55
6-
See `~matplotlib.axes.Axes.bar` / `~matplotlib.axes.Axes.barh`.
6+
See `~matplotlib.axes.Axes.bar`.
77
"""
88
import matplotlib.pyplot as plt
99
import numpy as np

0 commit comments

Comments
 (0)