ibis
ibis copied to clipboard
the portable Python dataframe library
### What happened? I am trying to create a RisingWave source from Minio and so I can build a transform pipeline to a RisingWave materialized view but the `struct` columns...
### Is your feature request related to a problem? Ibis support in Narwhals https://github.com/narwhals-dev/narwhals/pull/2000 ### What is the motivation behind your request? _No response_ ### Describe the solution you'd like...
### What happened? This is not really a bug in Ibis, but in DuckDB that is supposed to be fixed with v1.2.2 and affects Ibis. I just tested with new...
### Is your feature request related to a problem? Looks like Ibis has support for milliseconds / microseconds, but not nanoseconds Could nanoseconds be added too please? this would be...
### Is your feature request related to a problem? Related to https://github.com/ibis-project/ibis/issues/8079. In that issue, we settled on a defined behavior. Unfortunately, I think we settled on an unintuitive one,...
Remove the internally-used `DataType.name` property. BREAKING CHANGE: `DataType.name` is removed. Use `DataType.__class__.__name__` instead.
I have been getting sick of typing `some_table_or_struct.field_that_doesnt_exist_or_has_a_small_typo` and then getting a useless error message. It also is annoying to do `some_table.select(doesnt_exist, also_doesnt_exist)`, and you only get an error for...
I have this util function: ```python def is_happy( x: ibis.Table | ir.StructValue | None = None, ) -> ir.BooleanValue: if x is None: x = _ return ibis.or_( x.mood ==...
### What happened? Hi ibis support team and thank you for this wonderful package ❤ I was looking for an alternative to R's dplyr + dbplyr for python and the...
### What happened? When converting an Ibis schema containing a timezone-less Timestamp column (i.e. `dt.Timestamp` with `timezone` set to `None`) via a Databricks backend, the column is mapped to the...