Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. Pyplot es una interfaz basada en estado para un módulo Matplotlib que proporciona una interfaz similar a MATLAB.
función matplotlib.pyplot.disconnect()
La función de desconexión() en el módulo pyplot de la biblioteca matplotlib se usa para desconectar la devolución de llamada con id cid.
Sintaxis: matplotlib.pyplot.disconnect(cid)
Parámetros: Este método acepta los siguientes parámetros que se describen a continuación:
- cid: este parámetro se utiliza para desconectar la devolución de llamada.
Los siguientes ejemplos ilustran la función matplotlib.pyplot.disconnect() en matplotlib.pyplot:
Ejemplo 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()
Producción:
Ejemplo #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()
Salida:
Figura mostrada
Resultado de fondo después de hacer clic en la figura
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA