demo-visual-vocabulary / pages /examples /parallel_coordinates.py
antonymilne's picture
Add pycafe link and plotly code (#1)
b699ae9 verified
raw
history blame contribute delete
195 Bytes
import vizro.plotly.express as px
iris = px.data.iris()
fig = px.parallel_coordinates(
iris, color="species_id", dimensions=["sepal_width", "sepal_length", "petal_width", "petal_length"]
)