700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > python 相关性检验_在Python中计算Pearson相关性和重要性

python 相关性检验_在Python中计算Pearson相关性和重要性

时间:2018-08-12 22:58:53

相关推荐

python 相关性检验_在Python中计算Pearson相关性和重要性

您可以看一下scipy.stats:

from pydoc import help

from scipy.stats.stats import pearsonr

help(pearsonr)

>>>

Help on function pearsonr in module scipy.stats.stats:

pearsonr(x, y)

Calculates a Pearson correlation coefficient and the p-value for testing

non-correlation.

The Pearson correlation coefficient measures the linear relationship

between two datasets. Strictly speaking, Pearson's correlation requires

that each dataset be normally distributed. Like other correlation

coefficients, this one varies between -1 and +1 with 0 implying no

correlation. Correlations of -1 or +1 imply an exact linear

relationship. Positive correlations imply that as x increases, so does

y. Negative correlations imply that as x increases, y decreases.

The p-value roughly indicates the probability of an uncorrelated system

producing datasets that have a Pearson correlation at least as extreme

as the one computed from these datasets. The p-values are not entirely

reliable but are probably reasonable for datasets larger than 500 or so.

Parameters

----------

x : 1D array

y : 1D array the same length as x

Returns

-------

(Pearson's correlation coefficient,

2-tailed p-value)

References

----------

/textbook/glosp.html#Pearson%20Correlation

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。