pwwang / datar

A Grammar of Data Manipulation in python
https://pwwang.github.io/datar/
MIT License
272 stars 17 forks source link

[BUG] "NotImplementedByCurrentBackendError " when importing data with ` datar.data ` #171

Closed rleyvasal closed 1 year ago

rleyvasal commented 1 year ago

datar version checks

Issue Description

Importing datasets from datar gives error "NotImplementedByCurrentBackendError "

example

from datar.data import iris 

datar_not_implemented

Expected Behavior

from datar.data import iris 

imports the dataset

Installed Versions

python : 3.10.6 | packaged by conda-forge | (main, Aug 22 2022, 20:36:39) [GCC 10.4.0] datar : 0.11.1 simplug : 0.2.2 executing: 1.2.0 pipda : 0.11.0
pwwang commented 1 year ago

You need to install the backend as well.

pip install -U datar[pandas]
# or
pip install -U datar-pandas
rleyvasal commented 1 year ago

That was the problem, Thanks!