Metadata-Version: 2.3
Name: datar-pandas
Version: 0.5.7
Summary: The pandas backend for datar
License: MIT
Author: pwwang
Author-email: pwwang@pwwang.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
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Provides-Extra: all
Requires-Dist: datar (>=0.15.10,<0.16.0)
Requires-Dist: datar-numpy (>=0.3.6,<0.4.0)
Requires-Dist: pdtypes (>=0.2.3,<0.3.0)
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

