g = sns.lmplot(x='x', y='y', df, fit_reg=False, hue='z', lowess=True, scatter_kws={'alpha': 0.5}, legend=True)
plt.legend(bbox_to_anchor=(1.01, 0.5), ncol=2)
In the code above, if I set legend=True, I get both the default single column seaborn legend and the matplotlib legend. If I set `legend=False', then I get neither. How do I draw only the matplotlib 2 column legend?
