如何获取 Pyplot 中某个图形的坐标轴列表?
为了获得一个图形的坐标轴列表,我们首先会创建一个图形然后使用 get_axes() 方法来获得坐标轴并设置这些坐标轴的标签。
- 使用 numpy 创建 x 和 y 轴,使用 figure() 方法创建 fig。创建一个新的图形,或者激活一个已有的图形。
- 使用 add_subplot() 方法。把一个 '~.axes.Axes' 添加到该图形的子图布局中,其中 nrows=1, ncols=1 且 index=1.
- 获取 fig 的坐标轴,并设置 xlabel 和 ylabel。
- 使用红色绘制 x 和 y 的数据点。
- 使用 show() 方法来显示图形。
示例
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True xs = np.linspace(1, 10, 10) ys = np.tan(xs) fig = plt.figure() ax = fig.add_subplot(111) fig.get_axes()[0].set_ylabel("Y-Axis") fig.get_axes()[0].set_xlabel("X-Axis") ax.plot(xs, ys, c='red') plt.show()
输出
广告