This tool calculates the Spearman Correlation Coefficient of data.
The Spearman correlation measures the statistical dependence between two variables X and Y. It is defined as the Pearson correlation between the ranked variables.
It returns values between +1 and −1 inclusive.
The Spearman correlation coefficient is typically denoted by r, Spearman’s ρ or simply ρ.
The correlation will be calculated automatically.
spearmancorrelation.com has a simple API to calculate the Spearman correlation coefficient.
https://spearmancorrelation.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.