gpt4 book ai didi

python - 标签未出现在 Seaborn distplot 中

转载 作者:行者123 更新时间:2023-12-01 09:13:02 27 4
gpt4 key购买 nike

我正在使用 Seaborn 的 distplot() 函数,我并置了两个密度图——每个密度图在同一个图中都有不同的颜色——我想给它们贴上标签。

我使用函数文档中提到的参数“标签”。

我的代码是:

Response4_mask = train_with_response['Response4'] == 1
not_Response4_mask = train_with_response['Response4'] != 1

plt.figure()

sns.distplot(a = train_imp_with_response[Response4_mask]['Family_Hist_4'], hist = True, color = 'red', label = 'Response4')
sns.distplot(a = train_imp_with_response[not_Response4_mask]['Family_Hist_4'], hist = True, label = 'not_Response4')

plt.title('Family_Hist_4')

plt.tight_layout()
plt.show()

输出如下。里面没有标签:

enter image description here

最佳答案

只需添加

plt.legend()

参见documentation for legend()和 matplotlib 的 legend guide了解更多详情

plt.show()之前

关于python - 标签未出现在 Seaborn distplot 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51491487/

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