如何从 Pylab 生成的图片中删除 y 轴?
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()
我想要做的是从图表中删除 y 轴,只保留 x 轴。 向图表添加更多边距,我们可以看到画布边缘有很多点,看起来不太好。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)