在剧情标签中写天文单位

时间:2014-12-08 13:00:55

标签: python matplotlib latex

我使用matplotlib来绘制我的数据,但我需要在unit标签中写字,而且它不能像在乳胶中那样工作。例如,在使用siunitx包的胶乳中,我可以写\arcsecond单位但是如何在matplotlib中完成?

1 个答案:

答案 0 :(得分:0)

你可以这样做:

import pylab as plt 
from matplotlib.ticker import FormatStrFormatter
x = range(10)
plt.plot(x)
plt.gca().xaxis.set_major_formatter(FormatStrFormatter('%d unit'))