下你所需,载你所想!
汇集开发技术源码资料

Python绘制折线图

:1.431KB :1 :2022-01-06 12:40:19

部分简介

Python绘制折线图如果开发者对于本文件有需要的可以参考。
# clean up (removing chart junk) # turn off the top spine and the right spine # 关闭上面和右边的坐标轴 for spine in plt.gca().spines.keys(): if spine == 'top' or spine == 'right': plt.gca().spines[spine].set_color('none') # 下面这两句可以不写,默认就打开了 # turn on the bottom tick for x-axis plt.gca().xaxis.set_ticks_position('bottom') # set tick_line position of the bottom

Python绘制折线图

热门推荐

相关文章