Skip to content

Plotly Express constructor: in wide mode, lists passed to x and y params are mutated #4117

Description

@ned2

When either the x or y parameters to the Plotly Express constructor are passed lists of values, they are mutated such that values are converted to string.

Expected behaviour: Plotly Express should not mutate objects supplied as arguments by the user.

Minimal example (tested on Plotly 5.13.1 and master branch):

from random import randrange
import pandas as pd
import plotly.express as px

cols, rows = list(range(3)), list(range(10))
print(cols)
df = pd.DataFrame({col: [randrange(100) for _row in rows] for col in cols})
px.bar(df, y=cols, barmode="group")
print(cols)

Before the px.bar() call, cols has the value [1, 2, 3] and afterwards it is ["1", "2", "3"]. The same behaviour occurs for the x param and also when using other plotting functions than pxbar() (I tried px.histogram()).

I did some poking around, and can see that in the function build_dataframe in plotly/express/_core.py, the some of the fields in the user supplied args have copies made (which would fix this issue), but that is only applied to args found in the array_attrables list, which is ["dimensions", "custom_data", "hover_data", "path", "wide_variable"], which does not include x and y.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    P3backlogbugsomething broken

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions