David Cournapeau
2009-06-18 09:45:43
+3
A:
David Cournapeau provided a link to this example:
The important part of the code is setting up the legend:
ax2.legend(loc="center left", bbox_to_anchor=[0.5, 0.5],
ncol=2, shadow=True, title="Legend")
Set ncol=2 in your case and it should work great.
James Thompson
2009-06-18 10:35:18