Matplotlib显示美元符号刻度线标签(字符串)

时间:2016-10-27 20:54:13

标签: python matplotlib format labels dollar-sign

我无法弄清楚如何在刻度标签中显示美元符号,而不是数字,而是字符串。

这是我的意思的一个例子:

import matplotlib.pyplot as plt
import numpy as np

categories = ['$0-$10','$10-$20','$20-$30']
y_pos = np.arange(len(categories))
data = 3 + 10 * np.random.rand(len(categories))

plt.barh(y_pos, data, align='center', alpha=0.4)
plt.yticks(y_pos, categories)

plt.show()

收率:

enter image description here

我试过这个,这可以用上千美元:

fmt = '${x:,.0f}'
tick = mtick.StrMethodFormatter(fmt)
plt.yaxis.set_major_formatter(tick) 

...但是没有像我这里的字符串一样运气。

1 个答案:

答案 0 :(得分:5)

用反斜杠逃避美元符号,以便Matplotlib不会将它们解释为表示LaTeX math mode的开头(或结束):

import matplotlib.pyplot as plt
import numpy as np

categories = ['\$0-\$10','\$10-\$20','\$20-\$30']
y_pos = np.arange(len(categories))
data = 3 + 10 * np.random.rand(len(categories))

plt.barh(y_pos, data, align='center', alpha=0.4)
plt.yticks(y_pos, categories)

plt.show()

enter image description here