Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to move the legend in Seaborn FacetGrid outside of the plot

I have the following code:

g = sns.FacetGrid(df, row="Type", hue="Name", size=3, aspect=3)
g = g.map(sns.plt.plot, "Volume", "Index")
g.add_legend()
sns.plt.show()

This results in the following plot:

enter image description here

How can I move the legend outside of the plot?

like image 252
Florian Krause Avatar asked Mar 11 '23 12:03

Florian Krause


2 Answers

You can do this by resizing the plots:

g = sns.FacetGrid(df, row="Type", hue="Name", size=3, aspect=3)
g = g.map(sns.plt.plot, "Volume", "Index")
for ax in g.axes.flat:
    box = ax.get_position()
    ax.set_position([box.x0,box.y0,box.width*0.9,box.height])

sns.plt.legend(loc='center left',bbox_to_anchor=(1,0.5))
sns.plt.show()

Example:

import seaborn as sns

tips = sns.load_dataset('tips')

# more informative values
condition = tips['smoker'] == 'Yes'
tips['smoking_status'] = ''
tips.loc[condition,'smoking_status'] = 'Smoker'
tips.loc[~condition,'smoking_status'] = 'Non-Smoker'

g = sns.FacetGrid(tips,row='sex',hue='smoking_status',size=3,aspect=3)
g = g.map(plt.scatter,'total_bill','tip')
for ax in g.axes.flat:
    box = ax.get_position()
    ax.set_position([box.x0,box.y0,box.width*0.85,box.height])

sns.plt.legend(loc='upper left',bbox_to_anchor=(1,0.5))
sns.plt.show()

Results in:

enter image description here

like image 51
mechanical_meat Avatar answered Apr 27 '23 01:04

mechanical_meat


Following Seaborn documentation you can add the arg legend_out=True to your call and that should fix the problem

https://seaborn.pydata.org/generated/seaborn.FacetGrid.html

Your code would then look like

g = sns.FacetGrid(df, row="Type", hue="Name", size=3, aspect=3, legend_out=True)
g = (g.map(plt.plot, "Volume", "Index").add_legend())
plt.show()
like image 32
AGavin Avatar answered Apr 27 '23 01:04

AGavin