繁体   English   中英

如何将 Seaborn FacetGrid 中的图例移到情节之外

[英]How to move the legend in Seaborn FacetGrid outside of the plot

我有以下代码:

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()

这导致以下情节:

在此处输入图片说明

如何将图例移到情节之外?

您可以通过调整绘图大小来做到这一点:

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()

示例:

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()

结果:

在此处输入图片说明

按照 Seaborn 文档,您可以将 arg legend_out=True添加到您的电话中,这应该可以解决问题

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

你的代码看起来像

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()

根据上面 mwaskom 的评论,这是 OS X 中的一个错误。确实切换到另一个后端解决了这个问题。

例如,我把它放到我的matplotlibrc

backend : TkAgg   # use Tk with antigrain (agg) rendering

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM