“Matplotlib Legenda personalizada” Código de respuesta

Cómo agregar leyenda a la trama 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()
Good Gerenuk

leyenda matplotlib

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()
Plain Pigeon

Matplotlib Legenda personalizada

import matplotlib.lines as mlines

eight = mlines.Line2D([], [], color='blue', marker='s', ls='', label='8')
nine = mlines.Line2D([], [], color='blue', marker='D', ls='', label='9')
# etc etc
plt.legend(handles=[eight, nine])
Xerothermic Xenomorph

Respuestas similares a “Matplotlib Legenda personalizada”

Preguntas similares a “Matplotlib Legenda personalizada”

Más respuestas relacionadas con “Matplotlib Legenda personalizada” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código