如何在 Python Matplotlib 中指定 Y 轴上的值?

pythonmatplotlibserver side programmingprogramming

要在 Python 中指定 Y 轴上的值,我们可以采取以下步骤−

  • 使用 numpy 创建 x 和 y 数据点。
  • 要指定轴的值,请创建一个字符列表。
  • 使用 xticksyticks 方法分别使用 x 和 y 刻度数据点指定轴上的刻度。
  • 使用 x 和 y、color=red、使用 plot() 方法绘制线条。
  • 使 x 和 y 边距为 0。
  • 要显示图形,请使用 show() 方法。

示例

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.array([0, 2, 4, 6])
y = np.array([1, 3, 5, 7])
ticks = ['a', 'b', 'c', 'd']
plt.xticks(x, ticks)
plt.yticks(y, ticks)
plt.plot(x, y, c='green')
plt.margins(x=0, y=0)
plt.show()

输出


相关文章