我正在使用子图绘制不同的散点图。然而,我希望它们都具有相同的范围[0,1]。我尝试过使用径向轴和update_layout。但是,只有第一个子图发生了变化。有没有办法修改所有子图?
lst = range(1,rows+1)
n_rows = list(itertools.chain.from_iterable(itertools.repeat(x, cols) for x in lst))
df_grouped = df.groupby('cluster').mean()
fig = make_subplots(rows=rows, cols=cols, specs=[[{'type': 'polar'}]*cols]*rows,
horizontal_spacing=0.05, vertical_spacing=0.06)
for col, (row, index) in enumerate(zip(n_rows, df_grouped.index.values)):
fig.add_trace( go.Scatterpolar(name="Cluster "+str(int(index)),
r=df_grouped.loc[df_grouped.index == index].values[0],
theta=df_grouped.columns.values),
row, col%cols+1)
fig.update_traces(fill='toself')
fig.update_layout(polar=dict(radialaxis=dict(range=[0, 1])),
legend=dict(x=0.20,y=1.15), legend_orientation="h",
height=800, width=900,
margin=dict(l=5, r=5, t=5, b=5) )
p = plot(fig, output_type='div')
displayHTML(p)
提前谢谢。
是的:每个极坐标子图都有自己的键layout
所以你会想要做类似update_layout(polar=dict(...), polar2=dict(...), polar3=dict(...), ...)
我们还没有一个函数来批量更新所有polar
,就像我们为update_xaxes
所做的那样,但我们很快就会:)