Python-название Легенды matplotlib

Я знаю, что кажется довольно избыточным иметь заголовок для легенды, но возможно ли использовать matplotlib?

вот фрагмент кода у меня есть:

import matplotlib.patches as mpatches
import matplotlib.pyplot as plt

one = mpatches.Patch(facecolor='#f3f300', label='label1', linewidth = 0.5, edgecolor = 'black')
two = mpatches.Patch(facecolor='#ff9700', label = 'label2', linewidth = 0.5, edgecolor = 'black')
three = mpatches.Patch(facecolor='#ff0000', label = 'label3', linewidth = 0.5, edgecolor = 'black')

legend = plt.legend(handles=[one, two, three], loc = 4, fontsize = 'small', fancybox = True)

frame = legend.get_frame() #sets up for color, edge, and transparency
frame.set_facecolor('#b4aeae') #color of legend
frame.set_edgecolor('black') #edge color of legend
frame.set_alpha(1) #deals with transparency
plt.show()

Мне нужно название Легенды над label1. Для справки, это выход: Showing legend

1 ответов


добавить title параметр в этой строке:

legend = plt.legend(handles=[one, two, three], title="title", loc=4, fontsize='small', fancybox=True)

см. также официальные документы для legend конструктор.