import pylab  # matplotlib

x_list = [1,1,1,1,5,4]
y_list = [1,2,3,4,5,4]

pylab.plot(x_list, y_list, 'bo')

pylab.show()

What I want to do is remove the y-axis from the diagram, only keeping the x-axis. And adding more margin to the diagram, we can see that a lot of dots are on the edge of the canvas and don't look good.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted
ax = pylab.gca()
ax.yaxis.set_visible(False)
pylab.show()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.