ibis
ibis copied to clipboard
the portable Python dataframe library
After https://github.com/ibis-project/ibis/pull/4330 we have an implementation of add, multiply, and sub, but we're missing division. As part of fixing this issue, I think it'll make the implementation a lot less...
I could not find an issue to track work on adding a Snowflake backend to Ibis. Feel free to close this one if I missed it!
Ibis is a great tool for representing SQL logic in Python expressions. Currently - the translation goes one way: from Ibis (Python) to SQL expressions that get compiled and executed...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [dask](https://togithub.com/dask/dask) | `>=2021.10.0, `>=2021.10.0,
updates: - [github.com/pycqa/flake8: 5.0.2 → 5.0.4](https://github.com/pycqa/flake8/compare/5.0.2...5.0.4)
Both the core and sqlite tests pass now, result which is a pretty good baseline to work with.
I'd like to be able to create a table from literal values. This can be handy for small utility tables that I might like to join to. It's also handy...
Please add support for Recursive CTE's in Ibis as a way to interact with hierarchical data using Python. Please see repo: https://github.com/prmoore77/ibis-olap-aggregation - for an example where we use Recursive...
During my [work](https://github.com/iree-org/iree-llvm-sandbox/pull/551) on representing decimals in relational queries, I have come across behavior where ibis deviates from the SQL standard (as described [here](https://www.ibm.com/docs/en/i/7.1?topic=operators-decimal-arithmetic-in-sql)). ```python import ibis table = ibis.table(schema=[("a",...
All of these are accomplishable through `raw_sql` method but it would be nice for these to be fully implemented. In addition, it would also be useful to have the inverse...