matplotlib.pyplot.ion#
- matplotlib.pyplot.ion()[源代码][源代码]#
启用交互模式。
更多详情请参见
pyplot.isinteractive。参见
ioff禁用交互模式。
isinteractive是否启用交互模式。
显示显示所有图形(以及可能的块)。
暂停显示所有图形,并阻塞一段时间。
注释
对于临时更改,这可以作为上下文管理器使用:
# if interactive mode is off # then figures will not be shown on creation plt.ioff() # This figure will not be shown immediately fig = plt.figure() with plt.ion(): # interactive mode will be on # figures will automatically be shown fig2 = plt.figure() # ...
为了启用作为上下文管理器的可选使用,此函数返回一个上下文管理器对象,该对象不打算由用户存储或访问。