Replies: 2 comments 2 replies
-
Personal opinions:
Therefore switching to |
Beta Was this translation helpful? Give feedback.
2 replies
-
Thanks for the discussion @ogrisel! I think we're going to leave things as they are right now. We have a decent amount of work to do before we could consider making pandas an optional dependency (and it's not clear we should anyways!). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Now that Ibis uses duckdb as its default backend, it is possible to no longer import pandas by default (see #4786).
As a consequence @cpcloud suggested making pandas an optional dependency:
import ibis
#4786 (comment)But then, what kind of datastructure would be returned by
.execute()
by default? Shall the type of the datastructure be configurable (e.g. choose betweenpandas.DataFrame
orpyarrow.Table
for instance)?Beta Was this translation helpful? Give feedback.
All reactions