用法:
statistics.correlation(x, y, /)
返回两个输入的Pearson’s correlation coefficient。 Pearson 的相关系数
r
取值介于 -1 和 +1 之间。它衡量线性关系的强度和方向,其中+1表示非常强,正线性关系,-1表示非常强,负线性关系,0表示没有线性关系。两个输入必须具有相同的长度(不少于两个),并且不必是恒定的,否则会引发
StatisticsError
。例子:
>>> x = [1, 2, 3, 4, 5, 6, 7, 8, 9] >>> y = [9, 8, 7, 6, 5, 4, 3, 2, 1] >>> correlation(x, x) 1.0 >>> correlation(x, y) -1.0
3.10 版中的新函数。
相关用法
- Python statistics.covariance用法及代码示例
- Python statistics.median_grouped用法及代码示例
- Python statistics.median_high用法及代码示例
- Python statistics.quantiles用法及代码示例
- Python statistics.multimode用法及代码示例
- Python statistics.mean用法及代码示例
- Python statistics.median用法及代码示例
- Python statistics.NormalDist用法及代码示例
- Python statistics.median_low用法及代码示例
- Python statistics.mode用法及代码示例
- Python statistics.linear_regression用法及代码示例
- Python statistics.pvariance用法及代码示例
- Python statistics.harmonic_mean用法及代码示例
- Python statistics.variance用法及代码示例
- Python statistics mean()用法及代码示例
- Python staticmethod()用法及代码示例
- Python staticmethod用法及代码示例
- Python Scipy stats.cumfreq()用法及代码示例
- Python Scipy stats.nanmean()用法及代码示例
- Python Scipy stats.gengamma()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 statistics.correlation。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。