Metadata-Version: 2.1
Name: chart_me
Version: 0.1.4
Summary: Charting that keeps you in the EDA flow
Author-email: Luke Garzia <garzia.luke@gmail.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: pandas
Requires-Dist: altair
Requires-Dist: typing-extensions
Requires-Dist: sphinx ; extra == "doc"
Requires-Dist: myst-nb ; extra == "doc"
Requires-Dist: sphinx-rtd-theme ; extra == "doc"
Requires-Dist: sphinx-autoapi ; extra == "doc"
Requires-Dist: pytest ; extra == "test"
Requires-Dist: vega_datasets ; extra == "test"
Requires-Dist: notebook ; extra == "test"
Requires-Dist: pre-commit ; extra == "test"
Requires-Dist: interrogate ; extra == "test"
Requires-Dist: pytest-cov ; extra == "test"
Requires-Dist: tox ; extra == "test"
Requires-Dist: mypy ; extra == "test"
Requires-Dist: black ; extra == "test"
Requires-Dist: flake8 ; extra == "test"
Requires-Dist: isort ; extra == "test"
Requires-Dist: bump2version ; extra == "test"
Project-URL: Home, https://github.com/lgarzia/chart_me
Provides-Extra: doc
Provides-Extra: test

# _Chart Me_ Charting that keeps you in the EDA flow

---

Chart Me is a high-level charting library designed to expedite the Exploratory Data Analysis Process(eda). There are a few automated eda tools like [sweet viz](https://pypi.org/project/sweetviz/) that give a great initial set of visualizations. [lux](https://github.com/lux-org/lux) is a great tool to leverage - which gives a feel of AI assistance - but not always on the mark. The other alternative is hand-writing Altair code, which takes me out of the EDA flow looking up syntax or building functions..._Chart Me_ serves to keep you in the data analytics flow of discovery by keeping visualization commands to **one function** to remember.
[![v0.1.4](https://img.shields.io/pypi/v/chart_me.svg)](https://pypi.org/project/chart_me/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)
[![Interrogate](https://raw.githubusercontent.com/lgarzia/chart_me/master/interrogate_badge.svg)](https://interrogate.readthedocs.io/)

## Chart Me Documentation

See [Read the Docs](https://chart-me.readthedocs.io/en/latest/index.html) for more details

## **Usage Warnings**

\_Consider this is beta/proof-of-concept mode at this time. Limited to univariate & bivariate charts and doesn't support geographical data and is lightly tested.

## Installation

```bash
$ pip install chart-me
```

## Simple Usage

`chart_me` to quickly generate visualizations during eda process

```python
import chart_me as ce
ce.chart_me(df, 'col_1', 'col_2') #<-- reads as c-e-chart_me

```

![example](https://github.com/lgarzia/chart_me/blob/master/docs/source/_static/Example_Screenshot.png?raw=true)

