An open API service indexing awesome lists of open source software.

https://github.com/null-none/correlation-pearson

Pearson product-moment correlation coefficient
https://github.com/null-none/correlation-pearson

Last synced: about 1 year ago
JSON representation

Pearson product-moment correlation coefficient

Awesome Lists containing this project

README

          

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

=======
Install
=======

.. code-block:: bash

pip install correlation-pearson

=======
Example
=======

.. code-block:: python

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