当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python matplotlib.pyplot.ioff()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Pyplot是Matplotlib模块的基于状态的接口,该模块提供了MATLAB-like接口。

matplotlib.pyplot.ioff()函数:

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()

输出:




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 matplotlib.pyplot.ioff() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。