1
0
mirror of https://github.com/balkian/gists.git synced 2024-09-21 04:41:44 +00:00
gists/repos/e654835d4263378a3ac8/customlabels.py
J. Fernando Sánchez d6baea1a6c Add 'repos/e654835d4263378a3ac8/' from commit '04eaafc2934e925053aa449ee77d129d41229a52'
git-subtree-dir: repos/e654835d4263378a3ac8
git-subtree-mainline: 710c067e29
git-subtree-split: 04eaafc293
2021-10-30 15:12:55 +02:00

5 lines
164 B
Python

import matplotlib.patches as mpatches
import matplotlib.pyplot as plt
red_patch = mpatches.Patch(color='red', label='The red data')
plt.legend(handles=[red_patch])