Skip to content

Latest commit

 

History

History
executable file
·
28 lines (16 loc) · 508 Bytes

README.rst

File metadata and controls

executable file
·
28 lines (16 loc) · 508 Bytes

Pearson product-moment correlation coefficient. About algorithm https://en.wikipedia.org/wiki/Pearson_product-moment_correlation_coefficient

Install

pip install correlation-pearson

Example

from correlation_pearson.code import CorrelationPearson

dmitry = [1, 2, 3, 5, 7, 8]

joseph = [1, 3, 4, 5, 7, 9]

correlation = CorrelationPearson()

print correlation.result(dmitry, joseph)

0.981460802132