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
import polars as pl import altair as alt from datetime import date import ibis df = pl.DataFrame( { "a": [1,2,3], "b": [date(2020, 1, 1), date(2020, 1, 2), date(2020, 1, 3)], } ) tbl = ibis.memtable(df) print(tbl.to_pyarrow()) alt.Chart(tbl).mark_line().encode(x="a", y="b").to_json()
raises:
ValueError: Data type date32[day] not supported by interchange protocol
Plot it without raising
5.3.0
The text was updated successfully, but these errors were encountered:
Here is the upstream issue: apache/arrow#39539
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
What happened?
raises:
What would you like to happen instead?
Plot it without raising
Which version of Altair are you using?
5.3.0
The text was updated successfully, but these errors were encountered: