我试图摆脱 scatter_matrix 图的所有子图中的网格线。我已将 x 轴和 y 轴的 showgrid 参数设置为 False,但大多数子图确实仍然显示网格线。我该如何解决这个问题?
这是我的代码:
import plotly.express as px
df = px.data.iris()
fig = px.scatter_matrix(df,
dimensions=["sepal_width", "sepal_length", "petal_width", "petal_length"],
color="species")
fig.for_each_xaxis(lambda x: x.update(showgrid=False))
fig.for_each_yaxis(lambda x: x.update(showgrid=False))
fig.show()