gpt4 book ai didi

Python Seaborn jointplot 不在图表上显示相关系数和p值

转载 作者:太空狗 更新时间:2023-10-29 20:46:44 28 4
gpt4 key购买 nike

我正在尝试用下面的样本绘制联合图,我看到它应该在图表上显示相关系数和 p 值。但是它没有在我的身上显示这些值。有什么建议吗?谢谢。

import seaborn as sns
sns.set(style="darkgrid", color_codes=True)
sns.jointplot('Num of A', ' Ratio B', data = data_df, kind='reg', height=8)
plt.show()

最佳答案

我最终使用下面的绘图

import seaborn as sns
import scipy.stats as stats

sns.set(style="darkgrid", color_codes=True)
j = sns.jointplot('Num of A', ' Ratio B', data = data_df, kind='reg', height=8)
j.annotate(stats.pearsonr)
plt.show()

关于Python Seaborn jointplot 不在图表上显示相关系数和p值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52118245/

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