Ajouter une légende avec matplotlib

Published: 04 décembre 2016

DMCA.com Protection Status

Simple exemple sur comment ajouter une légende à une figure sous matplotlib

[image:matplotlib-legend]

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0, 40, 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.title('Matplotlib Legend Example')
plt.ylim(-1.5, 2.0)

plt.savefig('matplotlib_legend.png', bbox_inches='tight')
plt.show()

Recherches associées