-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added dataframe support and correlation plot
- Loading branch information
1 parent
6744ee0
commit a324550
Showing
4 changed files
with
126 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,40 @@ | ||
# PyCorr | ||
Simple package to calculate correlation between variables. Currently provides correlation between nominal variables. Correlation between mixed variables would be added soon. | ||
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 | ||
|
||
|
||
## Development setup | ||
|
||
## Release History | ||
|
||
* 0.1.3 | ||
* CHANGE: Remove `setDefaultXYZ()` | ||
* 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 | ||
|
||
## Meta | ||
|
||
Anurag Kumar Mishra – [https://github.com/anuragithub](https://github.com/anuragithub) – anuragkm25@outlook.com | ||
|
||
Distributed under the GNU license. See ``LICENSE`` for more information. | ||
|
||
[https://github.com/MavericksDS/pycorr](https://github.com/MavericksDS/pycorr) | ||
|
||
|
||
## Contributing | ||
|
||
1. Fork it (<https://github.com/MavericksDS/pycorr>) | ||
2. Create your feature branch (`git checkout -b feature/fooBar`) | ||
3. Commit your changes (`git commit -am 'Add some fooBar'`) | ||
4. Push to the branch (`git push origin feature/fooBar`) | ||
5. Create a new Pull Request | ||
|
||
<!-- Markdown link & img dfn's --> | ||
[pip-url]: https://pypi.org/project/pycorr/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters