gpt4 book ai didi

python - 如何在seaborn子图中只保留一个传说

转载 作者:行者123 更新时间:2023-12-03 17:16:51 24 4
gpt4 key购买 nike

我正在使用 seaborn 绘制两个子图,如下所示:

fig, (ax1, ax2) = plt.subplots(ncols=2, sharey=True)

sns.swarmplot(flowers[0], flowers[1], hue=colours, ax=ax1)
ax1.set(xlabel='Sepal Length', ylabel='Sepal Width')
plt.legend(loc="upper left", bbox_to_anchor=(1, 1))

sns.swarmplot(flowers[2], flowers[3], hue=colours, ax=ax2)
ax2.set(xlabel='Petal Length', ylabel='Petal Width')

sns.plt.show()

但是,每个子情节都有自己的由颜色决定的图例。是否可以删除其中之一,最好将剩余的放在地块之外?我试过使用 ax1.legend_.remove()但这没有用。

最佳答案

要使用的代码是:

fig, (ax1, ax2) = plt.subplots(ncols=2, sharey=True)

sns.swarmplot(flowers[0], flowers[1], hue=colours, ax=ax1)
ax1.set(xlabel='Sepal Length', ylabel='Sepal Width')
plt.legend(loc="upper left", bbox_to_anchor=(1, 1))

sns.swarmplot(flowers[2], flowers[3], hue=colours, ax=ax2)
ax2.set(xlabel='Petal Length', ylabel='Petal Width')
ax2.get_legend().remove()


sns.plt.show()

关于python - 如何在seaborn子图中只保留一个传说,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42332192/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com