Matplotlib-X轴标签有问题吗?

时间:2019-06-07 17:45:38

标签: python matplotlib graph label axes

我正在尝试在某些点向图形的x轴添加标签,例如:

  for i in range(len(chapterPosition)):
    plt.axvline(x = chapterPosition[i], label='{}'.format(chapterList[i]),color = 'black', linestyle = ":")
    list3.append([chapterPosition[i],chapterList[i]])
    plt.xticks([chapterPosition[i]],[chapterList[i]])
    ax1.legend()

但是,只有ChapterPosition和ChapterList(它们的长度相同)图中的索引非常大,我不确定为什么要在x轴上绘制它们。 谢谢。

0 个答案:

没有答案