Matplotlib.axes.Axes.yaxis_inverted() 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.yaxis_inverted()

La función Axes.yaxis_inverted() en el módulo de ejes de la biblioteca matplotlib devuelve si el eje y está invertido o no.

Sintaxis: Axes.yaxis_inverted(self)

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

Devoluciones: este método devuelve si el eje y está invertido o no.

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

Ejemplo 1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
   
fig, ax = plt.subplots()
   
ax.axvspan(1.5, 2.5, facecolor ='g', alpha = 0.7)
ax.invert_yaxis()
  
ax.set_title('matplotlib.axes.Axes.yaxis_inverted() \
Example\n',
             fontsize = 14, fontweight ='bold')
x = ax.yaxis_inverted()
ans ="No"
if x:
    ans ="Yes"
ax.text(1.8, -0.02, "Y-axis is inverted ? : " + ans,
        style ='italic', fontsize = 12)
  
plt.show()

Producción:

Ejemplo 2:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
   
np.random.seed(19680801)
plt.rcdefaults()
fig, ax = plt.subplots()
  
people = ('Geek1', 'Geek2', 'Geek3',
          'Geek4', 'Geek5')
  
y_pos = np.arange(len(people))
performance = 3 + 4.5 * np.random.rand(len(people))**2
error = np.random.rand(len(people))
  
ax.barh(y_pos, performance, xerr = error,
        align ='center', color ="green")
ax.set_yticks(y_pos)
ax.set_yticklabels(people)
  
ax.invert_yaxis()  
ax.set_xlabel('Performance')
x = ax.yaxis_inverted()
ans ="No"
if x:
    ans ="Yes"
      
ax.set_title('matplotlib.axes.Axes.yaxis_inverted() \
Example\n',
             fontsize = 14, fontweight ='bold')
ax.text(3, -0.75, "Y-axis is inverted ? : " + ans, 
        style ='italic', fontsize = 12)
  
plt.show()

Producción:

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 *