Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 465 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 465 Bytes

datar-pandas

The pandas backend for datar.

Installation

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

Usage

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)