gpt4 book ai didi

python - 改变 matplotlib 中的轴权重

转载 作者:太空狗 更新时间:2023-10-30 01:08:41 26 4
gpt4 key购买 nike

如何在 matplotlib 中更改轴权重(使轴更粗)?

from pylab import *    
x = [5,7,5,9,11,14]
y = [4,5,3,11,15,14]
scatter(x, y, s=50, color='green',marker='h')
show()

最佳答案

您可以在 Matplotlib 中设置所谓的脊柱(轴的一侧)的宽度:

fig, ax = plt.subplots()

ax.plot(np.random.randn(100).cumsum())

# The spines
plt.setp(ax.spines.values(), linewidth=3)

# The ticks
ax.xaxis.set_tick_params(width=3)
ax.yaxis.set_tick_params(width=3)

enter image description here

关于python - 改变 matplotlib 中的轴权重,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19949126/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com