gpt4 book ai didi

python - 在 matplotlib 中将科学记数法指数移动到 y 轴的右侧

转载 作者:太空宇宙 更新时间:2023-11-04 10:10:59 25 4
gpt4 key购买 nike

我画了一个这样的图enter image description here

现在我想把科学记数法偏移量1e4移到右边y轴的右边,最好把它移到1.8标签的右上角。我该怎么做?

最佳答案

这应该有效:

t = ax.yaxis.get_offset_text()
t.set_x(1.1)

ax 你的右轴。但是,你不能改变y位置,所以如果你不满意,你可以隐藏偏移文本并在正确的位置(x,y)手动创建它:

ax.yaxis.get_offset_text().set_visible(False)
text(x, y, "1e4")

关于python - 在 matplotlib 中将科学记数法指数移动到 y 轴的右侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38331332/

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