Spaces:
Runtime error
Runtime error
Add description to card metadata
#1
by
julien-c
HF staff
- opened
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
-
title: Spearman Correlation Coefficient Metric
|
3 |
-
emoji: 🤗
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
6 |
sdk: gradio
|
@@ -8,10 +8,24 @@ sdk_version: 3.0.2
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
tags:
|
11 |
-
- evaluate
|
12 |
-
- metric
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
---
|
14 |
-
|
15 |
# Metric Card for Spearman Correlation Coefficient Metric (spearmanr)
|
16 |
|
17 |
|
|
|
1 |
---
|
2 |
+
title: Spearman Correlation Coefficient Metric
|
3 |
+
emoji: 🤗
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
6 |
sdk: gradio
|
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
tags:
|
11 |
+
- evaluate
|
12 |
+
- metric
|
13 |
+
description: |-
|
14 |
+
The Spearman rank-order correlation coefficient is a measure of the
|
15 |
+
relationship between two datasets. Like other correlation coefficients,
|
16 |
+
this one varies between -1 and +1 with 0 implying no correlation.
|
17 |
+
Positive correlations imply that as data in dataset x increases, so
|
18 |
+
does data in dataset y. Negative correlations imply that as x increases,
|
19 |
+
y decreases. Correlations of -1 or +1 imply an exact monotonic relationship.
|
20 |
+
|
21 |
+
Unlike the Pearson correlation, the Spearman correlation does not
|
22 |
+
assume that both datasets are normally distributed.
|
23 |
+
|
24 |
+
The p-value roughly indicates the probability of an uncorrelated system
|
25 |
+
producing datasets that have a Spearman correlation at least as extreme
|
26 |
+
as the one computed from these datasets. The p-values are not entirely
|
27 |
+
reliable but are probably reasonable for datasets larger than 500 or so.
|
28 |
---
|
|
|
29 |
# Metric Card for Spearman Correlation Coefficient Metric (spearmanr)
|
30 |
|
31 |
|