Answers for "pyplot legend size"

4

legend size matplotlib

plt.plot([1, 2, 3], label='Inline label')
plt.legend(loc=1, prop={'size': 16})
Posted by: Guest on July-01-2020
0

matplotlib pyplot legend location

figlegend( (line1, line2, line3),
           ('label1', 'label2', 'label3'),
           'upper right' )
Posted by: Guest on May-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language