1つの大きな凡例を複数(通常は2つ)の小さな凡例に分割することは可能ですか?
from pylab import *
t = arange(0.0, 2.0, 0.01)
s = sin(2*pi*t)
plot(t, s, linewidth=1.0, label="Graph1")
grid(True)
s = sin(4*pi*t)
plot(t, s, color='r',linewidth=1.0, label="Graph2")
legend(loc='lower left')
show()
凡例を2つに分割し、空白が利用できる場所に配置したいと思います。