我有一堆情节。我举的是来自plotly 网站的例子。
我想在黑暗模式下绘制所有这些。 我必须为每个图手动输入
template="plotly_dark"
。
如何更改显示的默认设置,以便我不必为每个绘图手动输入
template="plotly_dark"
?
import plotly.express as px
df = px.data.iris()
fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species", marginal_y="violin",
marginal_x="box", trendline="ols", template="plotly_dark")
fig.show()
import plotly.express as px
df = px.data.iris()
df["e"] = df["sepal_width"]/100
fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species", error_x="e", error_y="e", template="plotly_dark")
fig.show()
您可以将其设置为默认值,如下所示
import plotly.io as pio
import plotly.express as px
pio.templates.default = "plotly_white"