/datar-pandas

The pandas backend for datar

Primary LanguagePython

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)