Open shane-kercheval opened 2 years ago
related to https://github.com/plotly/plotly.py/issues/3576
df = pd.DataFrame({ 'A': [1, 2, 3, 4], 'B': [1, 2, 3, 4], 'C': [1, 2, 3, 4], }, index=[3, 2, 1, 0] ) px.scatter_matrix(df) px.scatter_matrix(df, color='C')
px.scatter_matrix(df) produces:
px.scatter_matrix(df)
px.scatter_matrix(df, color='C') produces:
px.scatter_matrix(df, color='C')
Hi @shane-kercheval
Is this your expected output
?
Yes, thank you!
related to https://github.com/plotly/plotly.py/issues/3576
px.scatter_matrix(df)
produces:px.scatter_matrix(df, color='C')
produces: