Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pwwang/datar-pandas
The pandas backend for datar
https://github.com/pwwang/datar-pandas
Last synced: 14 days 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 (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-05T05:20:33.000Z (10 months ago)
- Last Synced: 2024-12-13T03:51:31.083Z (21 days ago)
- Language: Python
- Homepage:
- Size: 585 KB
- Stars: 5
- Watchers: 3
- 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