Metadata-Version: 2.1
Name: ggplotly
Version: 0.1
Summary: An advanced ggplot2-like plotting system for Python built on top of Plotly
Home-page: https://github.com/bbcho/ggplotly
Author: Ben Cho
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: plotly
Requires-Dist: numpy
Requires-Dist: scikit-learn
Requires-Dist: scipy

# GGPLOTLY

A data visualization library for Python that combines the power of ggplot and plotly.

## Installation

```bash
pip install ggplotly
```

## Usage

```python
from ggplotly import *
import pandas as pd

df = pd.DataFrame({
    'x': [1, 2, 3, 4, 5],
    'y': [1, 2, 3, 4, 5]
})

ggplot(df, aes(x='x', y='y')) + geom_point()
```

## Working Geoms

- geom_point
- geom_line
- geom_bar
- geom_area
