gpt4 book ai didi

python - matplotlib 中带有欧元符号的刻度

转载 作者:行者123 更新时间:2023-12-01 01:14:05 26 4
gpt4 key购买 nike

我正在尝试绘制具有欧元轴单位之一的图。我正在格式化的函数是:

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

它与 $ 配合得很好。现在我需要将 $ 与 € 符号互换,该符号无法直接识别。

我尝试的是:

def money(x, pos):
return r'$\euro$%1.0fB' % (x*1e-9)

但终端显示:

Unknown symbol: \euro

最佳答案

您还可以尝试使用 \texteuro 作为

import matplotlib.pyplot as plt
from matplotlib import rc
rc('text', usetex=True)

plt.plot(range(5))
plt.xlabel(r'\texteuro%1.0fB')
plt.show()

enter image description here

关于python - matplotlib 中带有欧元符号的刻度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54534083/

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