Answers for "python plot horizontal line"

2

horizontal line matplotlib python

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

python plot horizontal line

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

how to plot mltiple horizontak kines in matplotlib

[ax.axhiline(y=i, linestyle='--') for i in [150,100,200,300]]
Posted by: Guest on May-18-2020

Code answers related to "python plot horizontal line"

Python Answers by Framework

Browse Popular Code Answers by Language