Metadata-Version: 2.1
Name: ez-eda
Version: 0.1.1
Summary: simple EDA (Exploratory Data Analysis) visuals
License: MIT
Author: William VanBuskirk
Author-email: william.n.vanbuskirk@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: pandas (>=1.5.2,<2.0.0)
Requires-Dist: seaborn (>=0.12.1,<0.13.0)
Description-Content-Type: text/markdown

# ez-eda overview
- This library is a collection of simplified functions for visualizing dataframes quickly and easily
- I started this project after needing more refined heatmaps to understanding correlation

## ez correlation plot 
```
from ez_eda import ez_corr_heatmap
```
This function creates a cleaner seaborn-based heatmap to show correlations between numeric features

