Metadata-Version: 2.1
Name: datar-pandas
Version: 0.2.0
Summary: The pandas backend for datar
License: MIT
Author: pwwang
Author-email: pwwang@pwwang.com
Requires-Python: >=3.7.1,<4.0.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: datar (>=0.11,<0.12)
Requires-Dist: datar-numpy (>=0.1,<0.2)
Requires-Dist: pdtypes (>=0.0.4,<0.0.5)
Description-Content-Type: text/markdown

# datar-pandas

The pandas backend for [datar][1].

## Installation

```bash
pip install -U datar-pandas
# or
pip install -U datar[pandas]
```

## Usage

```python
from datar import f
# Without the backend: NotImplementedByCurrentBackendError
from datar.data import iris
from datar.dplyr import mutate

# Without the backend: NotImplementedByCurrentBackendError
iris >> mutate(sepal_ratio = f.Sepal_Width / f.Sepal_Length)
```

[1]: https://github.com/pwwang/datar

