ibis icon indicating copy to clipboard operation
ibis copied to clipboard

the portable Python dataframe library

Results 658 ibis issues
Sort by recently updated
recently updated
newest added

Currently users call `expr.execute()` to execute an `ibis` expression and get back a `pandas.DataFrame`. For efficiency and ease of interoperation with other tools, it would be useful to add some...

feature
ux
backends

This is a design draft not intended to be committed. The code is part of an Ibis/Substrait/PyArrow prototype.

## Description of changes * Add UDF translation rules to the Flink backend (copied from the base SQL backend, because Flink doesn't extend it) * Maybe this could be cleaner/not...

feature
udf
flink

### What happened? The below code is working in Google Collab running ibis-framework==7.1.0 ``` src_con = ibis.mssql.connect( host=host, database=database, user=user, password=password, driver='ODBC Driver 18 for SQL Server', TrustServerCertificate='yes' ) src_schemas...

bug
mssql

## Description of changes Ibis + DuckDB + OpenAI = easy vector search RAG...but is it a good solution? ## Issues closed

docs

The existing descriptions for these types at https://ibis-project.org/reference/expression-collections are pretty bad. - Improve toplevel docstring for types so you can get a sense for what they type even is. -...

## Current status We have a large test suite and don't want to run the entire thing for unrelated changes. Currently, there are two ways that CI gets run: 1....

tests
ci
developer-tools

### What happened? I'm querying a table with a schema like this ``` ibis.Schema { a !int64 b !timestamp('UTC') c !date d string e string f !string g !decimal(6, 2)...

bug

## Description of changes Explorative PR towards addressing https://github.com/ibis-project/ibis/issues/7712. This draft PR - Aims to bring more clarity to the concerns raised in https://github.com/ibis-project/ibis/issues/7712#issuecomment-1850331739. - Implements `ibis.read_iceberg()` by - Fetching...

redo of #7408 targeting main instead of master fixes #7172 I wasn't sure how testing this should work so I didn't add any tests. I would really appreciate it if...

ux