我正在尝试在某些点向图形的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轴上绘制它们。 谢谢。