gpt4 book ai didi

plotly - 在破折号中调整图形大小

转载 作者:行者123 更新时间:2023-12-04 15:58:33 24 4
gpt4 key购买 nike

我正在尝试调整 Dash 中由图形工厂制作的绘图图的大小。我知道如何更改常规 graph.Obj 布局中的大小,但这不适用于我的图形工厂图。

我要调整大小的绘图函数是:

fig_map = ff.create_choropleth(fips=df['x'].tolist(), 
values=df['y'].tolist(), scope=[state],
binning_endpoints=endpts,colorscale=DEFAULT_COLORSCALE,
county_outline={'color': 'rgb(255,255,255)', 'width': 0.5},
round_legend_values=True, legend_title='Population by County')

好像我想要类似的东西

fig_map.layout.update({'height':800}) 

来自本页 https://plot.ly/python/figure-factory-subplots/#plotlys-figure-factory-module ,但在尝试时我的 dash 应用程序出现错误。这也不会改变大小:

fig_map={
'layout': go.Layout(
height=800,
)}

任何建议都会很棒。

最佳答案

你可以尝试在 'layout` 中指定 height 或更新他:

data=[fig_map]
layout = go.Layout(
autosize=False,
width=1000,
height=1000,
title="fig_map")
fig = go.Figure(data=data,layout=layout)
fig['layout'].update(width=500, height=500, autosize=False)
plotly.offline.plot(fig, filename='fig_map')

关于plotly - 在破折号中调整图形大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51033987/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com