matplotlib.pyplot.ioff()函数
Matplotlib是Python中的一个库,它是NumPy库的数值-数学扩展。Pyplot是一个基于状态的Matplotlib模块接口,该模块提供了一个类似matlab的接口。
matplotlib.pyplot.ioff()函数
matplotlib库pyplot模块中的ioff()函数用于关闭交互模式。
语法:matplotlib.pyplot.ioff ()
参数:此方法不接受任何参数。
返回:此方法不返回任何值。
下面的例子演示了matplotlib.pyplot.ioff()函数在matplotlib.pyplot中的作用:
示例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()
输出: