x-axis line in bar plots

Ramashish Baranwal <ramashish.lists@...287...> writes:

x = range(10)
y = [random.randint(-10, 10) for i in x]
bar(x, y)

What I want is a line to be drawn at y=0. Any idea how to get it done?

How about axhline:

  axhline(color='k', lw=1)

See the documentation of axhline (and hlines) for more.

···

--
Jouni K. Sepp�nen

x = range(10)
y = [random.randint(-10, 10) for i in x]
bar(x, y)

What I want is a line to be drawn at y=0. Any idea how to get it done?

How about axhline:

axhline(color='k', lw=1)

See the documentation of axhline (and hlines) for more.

Thanks Jouni! This is exactly what I was looking for.:slight_smile:

Ram