📌  相关文章
📜  Python中的 Matplotlib.figure.Figure.clear()

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

Python中的 Matplotlib.figure.Figure.clear()

Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 figure 模块提供了顶级 Artist,即 Figure,其中包含所有绘图元素。该模块用于控制所有绘图元素的子图和顶级容器的默认间距。

matplotlib.figure.Figure.clear()函数

matplotlib 库的 clear() 方法图形模块用于清除图形。

下面的示例说明了 matplotlib.figure 中的 matplotlib.figure.Figure.clear()函数:

示例 1:

# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
      
fig, ax = plt.subplots()
  
ax.set_xlabel('x-axis')
ax.set_ylabel('y-axis')
  
ax.plot([1, 2, 3])
ax.grid(True)
  
fig.clear(True)
   
fig.suptitle('matplotlib.figure.Figure.clear() \
function Example\n\n', fontweight ="bold")
  
plt.show()

输出:

示例 2:

# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
      
t = np.linspace(0.0, 2.0, 201)
s = np.sin(2 * np.pi * t)
   
fig, [ax, ax1] = plt.subplots(2, 1, 
                              sharex = True)
   
ax.set_ylabel('y-axis')
ax.plot(t, s)
ax.grid(True)
ax.set_title('Sample Example',
             fontsize = 12,
             fontweight ='bold')
   
ax1.set_ylabel('y-axis')
ax1.plot(t, s)
ax1.grid(True)
  
fig.clear(False)
   
fig.suptitle('matplotlib.figure.Figure.clear() \
function Example\n\n', fontweight ="bold")
  
plt.show()

输出: