更改matplotlib轴设置

更改matplotlib轴设置,第1张

更改matplotlib轴设置 create some data
x = np.linspace(-np.pi,np.pi,100)y = np.cos(2.5*x)fig = plt.figure()ax = fig.add_subplot(111)ax.plot(x,y, mfc='orange', mec='orange', marker='.')# using 'spines', new in Matplotlib 1.0ax.spines['left'].set_position('zero')ax.spines['right'].set_color('none')ax.spines['bottom'].set_position('zero')ax.spines['top'].set_color('none')ax.spines['left'].set_smart_bounds(True)ax.spines['bottom'].set_smart_bounds(True)ax.xaxis.set_ticks_position('bottom')ax.yaxis.set_ticks_position('left')ax.axhline(linewidth=2, color='blue')ax.axvline(linewidth=2, color='blue')show()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5617189.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存