如何在 Matplotlib Python 中设置 X 轴值?
要在 Python 中的 matplotlib 中设置 X 轴值,我们可以采取以下步骤 -
针对 x 和 y 数据点创建两个 列表。
获取xticks 范围值。
使用 x 轴范围值和 y 数据点通过 plot() 方法绘制一条线。
使用 xticks() 方法用 X 轴值替换xticks 。
要显示图形,请使用 show() 方法。
范例
from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True x = [45, 1, 34, 78, 100] y = [8, 10, 23, 78, 2] default_x_ticks = range(len(x)) plt.plot(default_x_ticks, y) plt.xticks(default_x_ticks, x) plt.show()
输出
广告