如何防止x轴值从最小到最大?

时间:2019-01-03 20:39:10

标签: python matplotlib

1 个答案:

答案 0 :(得分:1)

您可以使用“默认” x值绘制它们并更改刻度标签。

plt.plot(Y)
plt.xticks(ticks=range(len(Y)), labels=X)  # where X is your list with the order you want