“Legenda de Matplotlib” Respostas de código

Legenda de 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

Legenda de Matplotlib fora do enredo

ax.legend(loc='upper center', bbox_to_anchor=(0.5, 1.05),
          ncol=3, fancybox=True, shadow=True)
Confused Crane

Python Nenhum rótulo em Legend Matplot

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

Legenda Ax matplotlib

ax.plot([1, 2, 3], label='Inline label')
ax.legend()
Ananda Gorck Streit

Respostas semelhantes a “Legenda de Matplotlib”

Perguntas semelhantes a “Legenda de Matplotlib”

Procure respostas de código populares por idioma

Procurar outros idiomas de código