With plotly express scattermatrix
import plotly.express as px
df = px.data.iris()
fig = px.scatter_matrix(df)
fig.show()
I would like to rotate the axis-labels (not the tick-labels) of the y-axis, which correspond to the columns in the dataframe, so that they are horizontal. Because, for longer names and more subplots the labels start overlapping pretty quickly. Is that currently doable?