Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c9742e0

Browse filesBrowse files
Update packages/python/plotly/plotly/express/_core.py
Co-authored-by: Emmanuelle Gouillart <emma@plot.ly>
1 parent 2f050f2 commit c9742e0
Copy full SHA for c9742e0

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
  • packages/python/plotly/plotly/express
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎packages/python/plotly/plotly/express/_core.py

Copy file name to clipboardExpand all lines: packages/python/plotly/plotly/express/_core.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1391,7 +1391,7 @@ def build_dataframe(args, constructor):
13911391
dtype = None
13921392
for v in wide_value_vars:
13931393
v_dtype = df_output[v].dtype.kind
1394-
v_dtype = "number" if v_dtype in ["i", "f"] else v_dtype
1394+
v_dtype = "number" if v_dtype in ["i", "f", "u"] else v_dtype
13951395
if dtype is None:
13961396
dtype = v_dtype
13971397
elif dtype != v_dtype:

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.