三大相关性系数(pearson、spearman、kendall)

  1. pearson


    image.png
  2. spearman correlation coefficient(斯皮尔曼相关性系数)


    image.png

    三大相关性系数(pearson、spearman、kendall)_第1张图片
    image.png
  3. kendall correlation coefficient(肯德尔相关性系数)


    image.png

    三大相关性系数(pearson、spearman、kendall)_第2张图片
    image.png

python 实现

三大相关性系数(pearson、spearman、kendall)_第3张图片
image.png

总结

1.连续数据,正态分布,线性关系,用pearson相关系数是最恰当,当然用spearman相关系数也可以,
就是效率没有pearson相关系数高。
2.上述任一条件不满足,就用spearman相关系数,不能用pearson相关系数。
3.两个定序测量数据之间也用spearman相关系数,不能用pearson相关系数。

你可能感兴趣的:(三大相关性系数(pearson、spearman、kendall))