Answers for "plot horizontal line matplotlib"

2

horizontal line matplotlib python

import matplotlib.pyplot as plt
plt.axhline(0)
Posted by: Guest on March-20-2020
1

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()
Posted by: Guest on June-13-2020
2

python plot horizontal line

import matplotlib.pyplot as plt
series.plot(kind='barh')
plt.show()
Posted by: Guest on September-15-2021

Code answers related to "plot horizontal line matplotlib"

Python Answers by Framework

Browse Popular Code Answers by Language