Python中的 Matplotlib.figure.Figure.sca()
Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 figure 模块提供了顶级 Artist,即 Figure,其中包含所有绘图元素。该模块用于控制所有绘图元素的子图和顶级容器的默认间距。
matplotlib.figure.Figure.sca() 方法
matplotlib 库的sca() 方法figure 模块用于设置当前坐标轴为 a。
Syntax: sca(self, a)
Parameters: This method accept the following parameters that are discussed below:
- a:This parameter is the current axes.
Returns: This method returns the axes.
下面的示例说明了 matplotlib.figure 中的 matplotlib.figure.Figure.sca()函数:
示例 1:
# Implementation of matplotlib function
import matplotlib.pyplot as plt
from scipy import sin, cos
fig, ax = plt.subplots(2, 1)
x = [1, 2, 3, 4, 5, 6, 7, 8, 9]
y1 = sin(x)
y2 = cos(x)
fig.sca(ax[0])
plt.plot(x, y1)
fig.sca(ax[1])
plt.plot(x, y2)
fig.suptitle("""matplotlib.figure.Figure.sca()
function Example\n\n""", fontweight ="bold")
plt.show()
输出:
示例 2:
# Implementation of matplotlib function
import matplotlib.pyplot as plt
fig, axes = plt.subplots(2, 2)
axes = axes.flatten()
for i in range(4):
fig.sca(axes[i])
axes[i].text(0.5, 0.5, i + 1)
fig.suptitle("""matplotlib.figure.Figure.sca()
function Example\n\n""", fontweight ="bold")
plt.show()
输出: