Metadata-Version: 2.1
Name: paircorr
Version: 0.0.1
Summary: A package for pairplot and corrplot
Author-email: Yunye <yunye@gwaslab.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: <3.11,>=3.9
Description-Content-Type: text/markdown
Requires-Dist: pandas!=1.5,>=1.3
Requires-Dist: numpy<2,>=1.21.2
Requires-Dist: matplotlib<3.9,>=3.8
Requires-Dist: seaborn>=0.12
Requires-Dist: scipy>=1.12
Requires-Dist: adjustText<=0.8,>=0.7.3
Requires-Dist: scikit-allel>=1.3.5

# pairplot

```
import pairplot as pp

pp.pairplot_long(df, column, value, index=False)

pp.pairplot_wide(wide_df, column=False)
```


```
import seaborn as sns
import pairplot as pp

iris = sns.load_dataset('iris')

pp.pairplot_wide(iris)
```
