📜  Python中的 Matplotlib.axes.Axes.remove()

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

Python中的 Matplotlib.axes.Axes.remove()

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

matplotlib.axes.Axes.remove()函数

如果可能,matplotlib 库的 axes 模块中的Axes.remove()函数用于从图形中删除艺术家。

句法:

Axes.remove(self)

下面的示例说明了 matplotlib.axes 中的 matplotlib.axes.Axes.remove()函数:

示例 1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
  
fig, axs = plt.subplots()
axs.plot([1, 2, 3])
axs.remove()
  
fig.suptitle('matplotlib.axes.Axes.remove()\
 function Example', fontweight ="bold")
  
plt.show()

输出:

示例 2:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
  
fig, (axs, axs2) = plt.subplots(2, 1)
gs = axs2.get_gridspec()
  
axs.remove()
      
axbig = fig.add_subplot(gs[1:, -1])
axbig.annotate("Removed one Axes",
               (0.4, 0.5),
               xycoords ='axes fraction',
               va ='center')
   
fig.suptitle('matplotlib.axes.Axes.remove()\
 function Example', fontweight ="bold")
plt.show()

输出: