You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-1Lines changed: 18 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
# PyPair
4
4
5
-
PyPair is a statistical library to compute pairwise association between any two variables.
5
+
PyPair is a statistical library to compute pairwise association between any two variables. In general, statistical variable types are viewed as `categorical` or `continuous`. Categorical variables have no inherit order to their values, while continuous variables do. This API has `over 130 association measures` implemented for any combination of categorical and/or continuous variables.
6
6
7
7
-[Documentation](https://py-pair.readthedocs.io/)
8
8
-[PyPi](https://pypi.org/project/pypair/)
@@ -26,6 +26,23 @@ print('-' * 15)
26
26
print(tanimoto_corr)
27
27
```
28
28
29
+
Another way to get started with PyPair is to use the `convenience` methods whose names indicate the variable pair types.
30
+
31
+
```python
32
+
from pypair.association import binary_binary, categorical_categorical, \
0 commit comments