We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, the Table.to_polars method cast list type to array type, I would like to preserve the original data type.
Table.to_polars
Reproducible example:
import ibis import numpy as np import polars as pl ibis.set_backend("polars") df = pl.DataFrame({x: np.random.random((100, 10)) }) >>> df.schema Schema([('x', Array(Float64, shape=(10,)))]) t = ibis.memtable(df) >>> t.schema() ibis.Schema { x array<float64> } >>> t.to_polars().schema Schema([('x', List(Float64))])
ibis-framework==10.0.0
polars==1.22.0
The text was updated successfully, but these errors were encountered:
This is working as intended right now, as we don't support fixed length arrays at the moment.
Sorry, something went wrong.
No branches or pull requests
What happened?
Hi, the
Table.to_polars
method cast list type to array type, I would like to preserve the original data type.Reproducible example:
What version of ibis are you using?
ibis-framework==10.0.0
What backend(s) are you using, if any?
polars==1.22.0
Relevant log output
Code of Conduct
The text was updated successfully, but these errors were encountered: