python horizontal line stack matplotlib code example
Example 1: horizontal line matplotlib python
import matplotlib.pyplot as plt
plt.axhline(0)
Example 2: how to plotting horizontal bar on matplotlib
import matplotlib.pyplot as plt
data = [5., 25., 50., 20.]
plt.barh(range(len(data)), data)
plt.show()