The pyarrow backend for datar.
Note that only base APIs are implemented.
pip install -U datar-arrow
# or
pip install -U datar[arrow]from datar.base import ceiling
# without it
ceiling(1.2) # NotImplementedByCurrentBackendError
# with it
ceiling(1.2) # 2