如何在 Python 中显示轴子图?
要在 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()
输出
广告