matplotlib legent left code example
Example 1: matplotlib pyplot legend location
figlegend( (line1, line2, line3),
('label1', 'label2', 'label3'),
'upper right' )
Example 2: python no label in legend matplot
ax.plot(randn(1000).cumsum(), 'k.', label='_nolegend_')