Spaces:
Running
Running
Add description to card metadata
Browse filesPearson correlation coefficient and p-value for testing non-correlation.
The Pearson correlation coefficient measures the linear relationship between two datasets. The calculation of the p-value relies on the assumption that each dataset is normally distributed. Like other correlation coefficients, this one varies between -1 and +1 with 0 implying no correlation. Correlations of -1 or +1 imply an exact linear relationship. Positive correlations imply that as x increases, so does y. Negative correlations imply that as x increases, y decreases.
The p-value roughly indicates the probability of an uncorrelated system producing datasets that have a Pearson correlation at least as extreme as the one computed from these datasets.
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
-
title: Pearson Correlation Coefficient
|
3 |
-
emoji: 🤗
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
6 |
sdk: gradio
|
@@ -8,10 +8,23 @@ 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 Pearson Correlation Coefficient (pearsonr)
|
16 |
|
17 |
|
|
|
1 |
---
|
2 |
+
title: Pearson Correlation Coefficient
|
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 |
+
Pearson correlation coefficient and p-value for testing non-correlation.
|
15 |
+
|
16 |
+
The Pearson correlation coefficient measures the linear relationship between
|
17 |
+
two datasets. The calculation of the p-value relies on the assumption that
|
18 |
+
each dataset is normally distributed. Like other correlation coefficients,
|
19 |
+
this one varies between -1 and +1 with 0 implying no correlation. Correlations
|
20 |
+
of -1 or +1 imply an exact linear relationship. Positive correlations imply
|
21 |
+
that as x increases, so does y. Negative correlations imply that as x
|
22 |
+
increases, y decreases.
|
23 |
+
|
24 |
+
The p-value roughly indicates the probability of an uncorrelated system
|
25 |
+
producing datasets that have a Pearson correlation at least as extreme as the
|
26 |
+
one computed from these datasets.
|
27 |
---
|
|
|
28 |
# Metric Card for Pearson Correlation Coefficient (pearsonr)
|
29 |
|
30 |
|