Metadata-Version: 2.1
Name: datar-pandas
Version: 0.5.3
Summary: The pandas backend for datar
License: MIT
Author: pwwang
Author-email: pwwang@pwwang.com
Requires-Python: >=3.8,<4.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
Provides-Extra: all
Requires-Dist: datar (>=0.15.3,<0.16.0)
Requires-Dist: datar-numpy (>=0.3.2,<0.4.0)
Requires-Dist: pdtypes (>=0.2,<0.3)
Requires-Dist: scipy (>=1.8,<2.0) ; extra == "all"
Requires-Dist: wcwidth (>=0.2,<0.3) ; extra == "all"
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

