https://github.com/pwwang/datar-pandas
The pandas backend for datar
https://github.com/pwwang/datar-pandas
Last synced: 1 day ago
JSON representation
The pandas backend for datar
- Host: GitHub
- URL: https://github.com/pwwang/datar-pandas
- Owner: pwwang
- Created: 2022-10-30T06:25:15.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-05-10T07:16:01.000Z (about 2 months ago)
- Last Synced: 2025-07-05T23:08:59.085Z (1 day ago)
- Language: Python
- Homepage:
- Size: 454 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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