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