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
I'm on the current master branch (1.15.2.post4+g5d22218ab).
I would like to try out the ibis backend using duckdb. But it seems that Timestamps are not displayed correctly.
Timestamp
import ibis import pandas as pd import panel as pn import holoviews as hv pn.extension(sizing_mode="stretch_width") df = pd.DataFrame({ "x": [pd.Timestamp("2022-01-01"), pd.Timestamp("2022-01-02")], "y": [1,2] }) con = ibis.pandas.connect({"df": df}) table = con.table("df") print(table.schema()) plot_ibis = hv.Curve(table, kdims="x", vdims="y") plot_pandas = hv.Curve(df, kdims="x", vdims="y") pn.Column( "# Ibis", plot_ibis, "# Pandas", plot_pandas ).servable()
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I'm on the current master branch (1.15.2.post4+g5d22218ab).
I would like to try out the ibis backend using duckdb. But it seems that
Timestamp
s are not displayed correctly.The text was updated successfully, but these errors were encountered: