ibis
ibis copied to clipboard
the portable Python dataframe library
According to coverage that method is untested https://app.codecov.io/gh/ibis-project/ibis/blob/master/ibis/expr/types/binary.py
Hello, I was wondering if it is possible to write to a specific schema within the database? Suppose, there is a schema named "q_2021" under `q_database` and I want to...
Both Scope and TimeContext are execution utilities used for the pandas based backends. They should be placed under the pandas backend rather than the IR subdirectory.
this join should raise on dtype incompat early. ``` diff --git a/ibis/pandas/execution/tests/test_join.py b/ibis/pandas/execution/tests/test_join.py index f670965..2157803 100644 --- a/ibis/pandas/execution/tests/test_join.py +++ b/ibis/pandas/execution/tests/test_join.py @@ -290,3 +290,10 @@ def test_keyed_asof_join( expected = pd.merge_asof( time_keyed_df1,...
In #3211, @goodwanghan points out that ibis's behavior for grouping keys with nulls isn't consistent across backends. I am not aware of any SQL engines that drop nulls in grouping...
Similarly reported in #3211, join keys with `nan`s do not follow the SQL semantic of dropping join keys where `==` would return NULL.
For tables, you can do `client.sql(SQL_STRING)` to get an ibis object for an abitrary sql string. If something like this were possible for columns inside of tables, users could use...
Hi! I'd like to add HiveQL support (as a backend) to this project. Is that something the development team would be interested in?
See #3097 which introduces support for Pandas, Dask, and Pyspark.