MA
MavericksDS/pycorr
A simple library to calculate correlation between variables. Currently provides correlation between nominal variables.
PyCorr
A simple library to calculate correlation between variables. Currently provides correlation between nominal variables.
Based on statistical methodology like Cramer'V and Tschuprow'T allows to gauge the correlation between categorical variables. Ability to plot the correlation in form of heatmap is also provided.
Usage example
import pandas as pd
from pycorrcat.pycorrcat import plot_corr, corr_matrix
df = pd.DataFrame([('a', 'b'), ('a', 'd'), ('c', 'b'), ('e', 'd')],
columns=['dogs', 'cats'])
correlation_matrix = corr_matrix(data, ['dogs', 'cats'])
plot_corr(df, ['dogs','cats'] )
Development setup
Create a virtualenv and install dependencies:
pip install -r requirements.dev.txtpip install -r requirements.txt
Then install the pre-commit hooks:pre-commit installand continue with code change.
Run pre-commit locally to check files
pre-commit run --all-files
Release History
- 0.1.4
- CHANGE: Changed the documentation (no code change)
- 0.1.3
- ADD: Ability to pass dataframe to get correlation matrix
- ADD: Ability to plot the correlation in form of heatmap
- 0.1.2
- Added as first release
- 0.1.1
- Test release
Author and Contributor
Anurag Kumar Mishra – Connect on github or drop a mail
Distributed under the GNU license. See LICENSE for more information.
Github repo link https://github.com/MavericksDS/pycorr
Contributing
- Fork it (https://github.com/MavericksDS/pycorr)
- Create your feature branch (
git checkout -b feature/fooBar) - Commit your changes (
git commit -am 'Add some fooBar') - Push to the branch (
git push origin feature/fooBar) - Create a new Pull Request
On this page
Languages
Python100.0%
GNU General Public License v3.0
Created May 3, 2020
Updated June 7, 2021