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


Python Matplotlib.pyplot.disconnect()用法及代码示例


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

matplotlib.pyplot.disconnect()函数

matplotlib库的pyplot模块中的disconnect()函数用于断开ID为cid的回调。

用法: matplotlib.pyplot.disconnect(cid)


参数:此方法接受以下描述的参数:

  • cid:此参数用于断开回调。

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

范例1:

# Implementation of matplotlib function 
import numpy as np 
import matplotlib.pyplot as plt 
  
fig, ax = plt.subplots() 
ax.plot(np.random.rand(10)) 
  
def onclick(event):
    print('% s click:button =% d, x =% d, y =% d,\ 
    xdata =% f, ydata =% f' %
          ('double' if event.dblclick else 'single', 
           event.button, 
           event.x, 
           event.y,  
           event.xdata,  
           event.ydata)) 
  
cid = fig.canvas.mpl_connect('button_press_event', 
                             onclick) 
fig.canvas.mpl_disconnect(cid) 
  
plt.suptitle('matplotlib.pyplot.disconnect()\ 
function Example', fontweight ="bold") 
  
plt.show()

输出:

范例2:

# Implementation of matplotlib function 
from matplotlib.backend_bases import MouseButton 
import matplotlib.pyplot as plt 
import numpy as np 
  
t = np.arange(0.0, 1.0, 0.01) 
s = np.sin(2 * np.pi * t) 
fig, ax = plt.subplots() 
ax.plot(t, s) 
  
  
def gfg1(event):
      
    # get the x and y pixel coords 
    x, y = event.x, event.y 
    if event.inaxes:
          
        # the axes instance 
        ax = event.inaxes 
        print('Coordinates:% f  and\ 
        % f' % (event.xdata, event.ydata)) 
  
  
def gfg2(event):
      
    if event.button is MouseButton.LEFT:
        print('Successfully disconnected') 
        plt.disconnect(binding_id) 
  
  
binding_id = plt.connect('motion_notify_event', 
                         gfg1) 
  
plt.connect('button_press_event', gfg2) 
  
plt.suptitle('matplotlib.pyplot.disconnect()\ 
function Example', fontweight ="bold") 
plt.show()

输出:
如图所示

单击图后的背景结果




相关用法


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