We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f050f2 commit c9742e0Copy full SHA for c9742e0
packages/python/plotly/plotly/express/_core.py
@@ -1391,7 +1391,7 @@ def build_dataframe(args, constructor):
1391
dtype = None
1392
for v in wide_value_vars:
1393
v_dtype = df_output[v].dtype.kind
1394
- v_dtype = "number" if v_dtype in ["i", "f"] else v_dtype
+ v_dtype = "number" if v_dtype in ["i", "f", "u"] else v_dtype
1395
if dtype is None:
1396
dtype = v_dtype
1397
elif dtype != v_dtype:
0 commit comments