📜  Python中的 Matplotlib.axes.SubplotBase()

📅  最后修改于: 2022-05-13 01:54:58.859000             🧑  作者: Mango

Python中的 Matplotlib.axes.SubplotBase()

Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 Axes 类包含大部分图形元素:Axis、Tick、Line2D、Text、Polygon 等,并设置坐标系。 Axes 的实例通过回调属性支持回调。

matplotlib.axes.SubplotBase() 类

它是作为 Axes 实例的子图的基类。它提供了各种新方法,用于在图形对象中生成和操作一组轴。
注意:在 SubplotBase 中, Base是对象。

下面的示例说明了 matplotlib.axes 中的 matplotlib.axes.SubplotBase() 类:
示例 1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
from mpl_toolkits.axisartist.axislines import SubplotZero
import numpy as np
  
fig = plt.figure(figsize =(4, 3))
  
# Zero is the base
ax = SubplotZero(fig, 1, 1, 1)
fig.add_subplot(ax)
  
xx = np.arange(0, 2 * np.pi, 0.01)
ax.plot(xx, np.sin(xx))
  
fig.suptitle('matplotlib.axes.SubplotBase() class Example\n\n', 
             fontweight ="bold")
  
plt.show()

输出:

示例 2:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
from mpl_toolkits.axisartist.axislines import Subplot
  
fig = plt.figure()
  
ax = Subplot(fig, 111)
fig.add_subplot(ax)
  
ax.axis["left"].set_visible(False)
ax.axis["top"].set_visible(False)
  
fig.suptitle('matplotlib.axes.SubplotBase() class Example\n\n',
              fontweight ="bold")
  
plt.show()

输出: