objects = ('AB_{3}', 'AB_{5}', 'AB_{10}', 'AB_{55}', 'AB_{1}', 'AB_{200}')
y_pos = np.arange(len(objects))
我想打印y_pos作为乳胶配方。有没有办法在matplotlib中设置刻度值的格式?
答案 0 :(得分:1)
Matplotlib使用mathtext来排版类似乳胶的标记。您需要做的就是在标签中使用数学模式。
objects = ('$AB_{3}$', '$AB_{5}$', '$AB_{10}$', '$AB_{55}$', '$AB_{1}$', '$AB_{200}$')