使用matplotlib打印乳胶轴值

时间:2017-05-09 15:52:55

标签: python matplotlib latex

objects = ('AB_{3}', 'AB_{5}', 'AB_{10}', 'AB_{55}', 'AB_{1}', 'AB_{200}')
y_pos = np.arange(len(objects))

我想打印y_pos作为乳胶配方。有没有办法在matplotlib中设置刻度值的格式?

1 个答案:

答案 0 :(得分:1)

Matplotlib使用mathtext来排版类似乳胶的标记。您需要做的就是在标签中使用数学模式。

objects = ('$AB_{3}$', '$AB_{5}$', '$AB_{10}$', '$AB_{55}$', '$AB_{1}$', '$AB_{200}$')