Hyunseung Kim
Hyunseung Kim

Reputation: 553

How to rotate axis label of plotly parallel coordinates plot?

How to rotate axis label of plotly parallel coordinates plot?

The following image is what I wan to do: enter image description here

I attached a source script:

import plotly.express as px
df = px.data.iris()
fig = px.parallel_coordinates(df, color="species_id",
                              dimensions=['sepal_width', 'sepal_length', 'petal_width',
                                          'petal_length'],
                              color_continuous_scale=px.colors.diverging.Tealrose,
                              color_continuous_midpoint=2)
fig.show()

Upvotes: 4

Views: 346

Answers (0)

Related Questions