gpt4 book ai didi

python-3.x - 在绘图标签中使用 % 范围

转载 作者:行者123 更新时间:2023-12-04 10:03:03 24 4
gpt4 key购买 nike

我想以%为单位更改范围。在沿 x 轴的附图中,我想沿 x 轴将其标记为 -1%、-0.05%、0、0.05% 和 1%。有没有办法直接在 python 中使用 range 函数来做到这一点? enter image description here

ax.set_xlim(-0.012, 0.012, 0.2)

最佳答案

您可以修改刻度标签,如下所示

fig, ax = plt.subplots()

x = np.linspace(-0.01, 0.01, 10)
ax.plot(x, -x/10, '-bo')

ax.set_xlim(-0.012, 0.012, 0.2)

labels = ['{:.2f}%'.format(item*100) for item in ax.get_xticks()]

ax.set_xticklabels(labels)

enter image description here

关于python-3.x - 在绘图标签中使用 % 范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61736462/

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