gpt4 book ai didi

pandas - 将 y 轴单位的科学记数法缩写更改为字符串

转载 作者:行者123 更新时间:2023-12-01 13:20:06 24 4
gpt4 key购买 nike

首先,我想道歉,因为我知道我没有正确地问这个问题(这就是为什么我找不到可能是简单答案的原因)。

我有一个图表 graph

正如您在 y 轴上方看到的那样,它表示 1e11,表示单位为 1000 亿。我想将图表更改为 1000 亿而不是 1e11。

我不确定这样的符号叫什么。

需要明确的是,我并没有像其他问题那样要求将整个 y 轴更改为数字值,我只想更改顶部的 1e11 以便对那些不太懂数学的人更具可读性。

ax.get_yaxis().get_major_formatter().set_scientific(False)

结果为 enter image description here一个不希望的结果

最佳答案

import numpy as np
from matplotlib.ticker import FuncFormatter

def billions(x, pos):
return '$%1.1fB' % (x*1e-9)

formatter = FuncFormatter(billions)

ax.yaxis.set_major_formatter(formatter)

位于 https://matplotlib.org/examples/pylab_examples/custom_ticker1.html

产生enter image description here

关于pandas - 将 y 轴单位的科学记数法缩写更改为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50335690/

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