📜  Python中的 matplotlib.pyplot.ioff()

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

Python中的 matplotlib.pyplot.ioff()

Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 PyplotMatplotlib模块的基于状态的接口,它提供了一个类似 MATLAB 的接口。

matplotlib.pyplot.ioff()函数:

matplotlib 库的 pyplot 模块中的ioff()函数用于关闭交互模式。

下面的示例说明了 matplotlib.pyplot 中的 matplotlib.pyplot.ioff()函数:

示例 #1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
  
plt.ioff() 
plt.plot([1.4, 2.5, 0.3])
    
axes = plt.gca() 
axes.plot([3.1, 2.2, 6])
  
plt.title('matplotlib.pyplot.ioff() function Example',
                                   fontweight ="bold")
  
plt.show()

输出:

示例 #2:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
  
plt.ioff() 
random_array = np.arange(-2, 4) 
line_1 = random_array * 2
line_2 = 10 / (random_array * 2 + 1) 
figure, axes = plt.subplots() 
    
axes.plot(random_array, line_1, 
          'ro-', random_array, 
          line_2, 'bo-',  
          linestyle ='solid') 
    
axes.fill_between(random_array,  
                  line_1,  
                  line_2, 
                  where = line_2>line_1,  
                  interpolate = True, 
                  color ='green', alpha = 0.4) 
    
lgnd = axes.legend(['line-1', 
                    'line-2'],  
                   loc ='lower center',  
                   shadow = True) 
    
lgnd.get_frame().set_facecolor('# ffb19a') 
plt.title('matplotlib.pyplot.ioff() function Example', 
                                    fontweight ="bold")
plt.show()

输出: