-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Incorrect interpretation of nullable data types #3495
New issue
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
Comments
Cannot reproduce in plotly |
I have plotly 5.18.0 installed right now, and the problem is still there. |
I tried in plotly version import pandas as pd
import plotly.express as px
import plotly
df = pd.DataFrame(
data=[1,2,3,4,5],
columns=['a'],
index=pd.date_range('2021-01-01', '2021-01-05'),
dtype='Int64'
)
px.bar(df, height=300, title=plotly.__version__ + '; ' + pd.__version__) |
Hi - we are tidying up stale issues and PRs in Plotly's public repositories so that we can focus on things that are still important to our community. Since this one has been sitting for a while, I'm going to close it; if it is still a concern, please add a comment letting us know what recent version of our software you've checked it with so that I can reopen it and add it to our backlog. If you'd like to submit a PR, we'd be happy to prioritize a review, and if it's a request for tech support, please post in our community forum. Thank you - @gvwilson |
Description
Using Pandas' nullable data types (
Int64
andFloat64
) result in an incorrect plot.Code
Result
Expected
The text was updated successfully, but these errors were encountered: