我正在使用seaborn的kdeplot
来绘制如下所示的图形:
for feature_val in survey_df_good['EthicsChoice'].value_counts().index:
fig = sns.kdeplot(survey_df_good.loc[(survey_df_good['EthicsChoice]==feature_val) & \
(survey_df_good['ConvertedSalary']<200000),
'ConvertedSalary'],
label="EthicsChoice: "+feature_val)
现在,我想做的是标记绿色曲线与蓝色曲线相交的点(在上图中的50000左右)。
这是可能的吗?如果是的话,那么我将非常感谢您提供有关该如何做的任何建议!