“Matplotlib de tamaño de leyenda” Código de respuesta

Matplotlib de tamaño de leyenda

plt.plot([1, 2, 3], label='Inline label')
plt.legend(loc=1, prop={'size': 16})

Sleepy Shark

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

Python No hay etiqueta en Legend Matplot

ax.plot(randn(1000).cumsum(), 'k.', label='_nolegend_')
Nasty Newt

Respuestas similares a “Matplotlib de tamaño de leyenda”

Preguntas similares a “Matplotlib de tamaño de leyenda”

Más respuestas relacionadas con “Matplotlib de tamaño de leyenda” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código