设置`axes.linewidth`而不更改`rcParams`全局字典

设置`axes.linewidth`而不更改`rcParams`全局字典,第1张

设置`axes.linewidth`而不更改`rcParams`全局字典

上面的答案无效,如注释中所述。我建议使用刺。

import matplotlib.pyplot as pltfig = plt.figure()ax = fig.add_subplot(111)# you can change each line separately, like:#ax.spines['right'].set_linewidth(0.5)# to change all, just write:for axis in ['top','bottom','left','right']:  ax.spines[axis].set_linewidth(0.5)plt.show()# see more about spines at:#http://matplotlib.org/api/spines_api.html#http://matplotlib.org/examples/pylab_examples/multiple_yaxis_with_spines.html


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存