有没有办法找到使用seaborn绘制的2条曲线的交点?

时间:2018-08-30 05:32:59

标签: python matplotlib data-visualization seaborn

我正在使用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) 

ConvertedSalary with EthicsChoice

现在,我想做的是标记绿色曲线与蓝色曲线相交的点(在上图中的50000左右)。

这是可能的吗?如果是的话,那么我将非常感谢您提供有关该如何做的任何建议!

0 个答案:

没有答案