如何在 Python 中显示轴子图?
pythonmatplotlibserver side programmingprogramming
要在 Python 中显示轴子图,我们可以使用 show() 方法。创建多个图形时, 然后使用 show() 方法显示这些图像。
步骤
- 使用 numpy 创建 x 和 y 数据点。
- 使用 plot() 方法绘制 x 和 y。
- 要显示图形,请使用 show() 方法。
示例
from matplotlib import pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True x = np.arange(10) y = np.exp(x) plt.plot(x, y) plt.show()