This tool calculates the Pearson Correlation Coefficient of data.
Have you ever wondered if certain things influence each other? For example, if gas prices rise when daily temperatures increase?
With the Pearson Correlation, you can find out.
For two lists of numbers, it returns values between +1 and −1:
The Pearson correlation coefficient is typically denoted by r, Pearson’s ρ or simply ρ.
The correlation will be calculated automatically.
pearsoncorrelation.com has a simple API to calculate the Pearson correlation coefficient.
https://pearsoncorrelation.com/api/v2.groovy
One of
t
which contains an interleaved list of strings (one value of the first column, one value of the second column etc.)t1
and t2
which contain the first and second column respectivelyUse whitespace or newlines to separate values.
Output depends on the Accept
header you send. If you send application/xml
, the output will be XML. Similarly
for application/json
(JSON output) and text/plain
(plain text output).
If you use a parameter called callback
, you can use the API from remote domains.