如何使用 Matplotlib 在 Python 中绘制数组?
若要绘制 Python 中的 数组,我们可以采取以下步骤:
- 设置图形大小并调整子图之间和周围的边距。
- 使用 numpy 创建两个数组 x 和 y。
- 使用 title() 方法设置曲线的标题。
- 绘制 x 和 y 数据点,使用红色。
- 要显示图形,请使用 show() 方法。
示例
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.array([5, 4, 1, 4, 5]) y = np.sort(x) plt.title("Line graph") plt.plot(x, y, color="red") plt.show()
输出
广告