Matplotlib.axes.Axes.get_gid() en Python

Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. La clase Axes contiene la mayoría de los elementos de la figura: Axis, Tick, Line2D, Text, Polygon, etc., y establece el sistema de coordenadas. Y las instancias de Axes admiten devoluciones de llamada a través de un atributo de devoluciones de llamada.

función matplotlib.axes.Axes.get_gid()

La función Axes.get_gid() en el módulo de ejes de la biblioteca matplotlib se usa para obtener la identificación del grupo.

Sintaxis: Axes.get_gid(self)

Parámetros: Este método no acepta ningún parámetro.

Devoluciones: este método devuelve la identificación del grupo.

Los siguientes ejemplos ilustran la función matplotlib.axes.Axes.get_gid() en matplotlib.axes:

Ejemplo 1:

# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
  
  
y, x = np.mgrid[:5, 1:6]
  
poly_coords = [
    (0.25, 2.75), (3.25, 2.75),
    (2.25, 0.75), (0.25, 0.75)
]
fig, ax = plt.subplots()
    
cells = ax.plot(x, y, x + y, color ='green')
  
ax.add_patch(
    plt.Polygon(poly_coords, color ='forestgreen',
                alpha = 0.5)
    )
ax.margins(x = 0.1, y = 0.05)
ax.set_aspect('equal')
  
for i, t in enumerate(ax.patches):
    t.set_gid('patch_% d' % i)
    print("Value Return :", t.get_gid())
    
fig.suptitle('matplotlib.axes.Axes.get_gid() function\
 Example\n\n', fontweight ="bold")
  
plt.show()

Producción:

Value Return : patch_0

Ejemplo 2:

# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
  
  
fig, ax = plt.subplots()
   
circle = plt.Circle((0, 0), 5, fc ='blue')
rect = plt.Rectangle((-5, 10), 10, 5, fc ='green')
   
ax.add_patch(circle)
ax.add_patch(rect)
   
circle_tip = ax.annotate('This is a blue circle.',
            xy =(0, 0),
            xytext =(30, -30),
            textcoords ='offset points',
            color ='w',
            ha ='left',
            bbox = dict(boxstyle ='round, pad =.5', 
                        fc =(.1, .1, .1, .92), 
                        ec =(1., 1., 1.), 
                        lw = 1,
                        zorder = 1),
            )
   
rect_tip = ax.annotate('This is a green rectangle.',
            xy =(-5, 10),
            xytext =(30, 40),
            textcoords ='offset points',
            color ='w',
            ha ='left',
            bbox = dict(boxstyle ='round, pad =.5', 
                        fc =(.1, .1, .1, .92), 
                        ec =(1., 1., 1.), 
                        lw = 1,
                        zorder = 1),
            )
print("Value Return")
for i, t in enumerate(ax.patches):
    t.set_gid('patch_% d'% i)
    print(t.get_gid())
  
for i, t in enumerate(ax.texts):
    t.set_gid('tooltip_% d'% i)
    print(t.get_gid())
  
ax.set_xlim(-30, 30)
ax.set_ylim(-30, 30)
ax.set_aspect('equal')
    
fig.suptitle('matplotlib.axes.Axes.get_gid() function\
Example\n\n', fontweight ="bold")
  
plt.show()

Producción:

Value Return
patch_0
patch_1
tooltip_0
tooltip_1

Publicación traducida automáticamente

Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *