Saltar al contenido

agregar leyenda en el ejemplo de código de Python

La guía o código que encontrarás en este post es la resolución más fácil y efectiva que hallamos a esta inquietud o problema.

Ejemplo 1: cómo agregar una leyenda a la gráfica de Python

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0,20,1000)
y1 = np.sin(x)
y2 = np.cos(x)

plt.plot(x, y1,"-b", label="sine")
plt.plot(x, y2,"-r", label="cosine")
plt.legend(loc="upper left")
plt.ylim(-1.5,2.0)
plt.show()

Ejemplo 2: posición de la leyenda matplotlib

plt.legend(loc='upper right')

Ejemplo 3: matplotlib agregar leyenda eje x

fig = plt.figure(figsize=(10,5))
ax = fig.add_subplot(111)
ax.set_title('ADR vs Rating (CS:GO)')
ax.scatter(x=data[:,0],y=data[:,1],label='Data')
plt.plot(data[:,0], m*data[:,0]+ b,color='red',label='Our Fitting 
Line')
ax.set_xlabel('ADR')
ax.set_ylabel('Rating')
ax.legend(loc='best')
plt.show()

Ejemplo 4: Python cómo agregar una leyenda de figura en la mejor posición

# Short answer:# matplotlib.pyplot places the legend in the "best" location by default# To add a legend to your plot, call plt.legend()# Example usage:import matplotlib.pyplot as plt
x1 =[1,2,3]# Invent x and y data to be plotted
y1 =[4,5,6]
x2 =[1,3,5]
y2 =[6,5,4]

plt.plot(x1, y1, label="Dataset_1")# Use label="data_name" so that the # legend is easy to interpret
plt.plot(x2, y2, label="Dataset_2")
plt.legend(loc='best')
plt.show()# Other legend locations you can specify:
Location String		Location Code (e.g. loc=1)'best'0'upper right'1'upper left'2'lower left'3'lower right'4'right'5'center left'6'center right'7'lower center'8'upper center'9'center'10

Si tienes alguna sospecha o disposición de aumentar nuestro enunciado te evocamos dejar una aclaración y con deseo lo estudiaremos.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

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