gpt4 book ai didi

python - 破折号 : updating a figure's data instead of updating graph's figure?

转载 作者:行者123 更新时间:2023-12-02 02:21:16 25 4
gpt4 key购买 nike

我正在阅读一些教程,包括 official docs似乎每个人都更喜欢输出一个图形

例如:

@app.callback(
Output('graph-with-slider', 'figure'),
Input('year-slider', 'value'))
def update_figure(selected_year):
filtered_df = df[df.year == selected_year]

fig = px.scatter(filtered_df, x="gdpPercap", y="lifeExp",
size="pop", color="continent", hover_name="country",
log_x=True, size_max=55)

fig.update_layout(transition_duration=500)

return fig

为什么不只将数据输出到图形的 data 字段?

可能吗?

最佳答案

您可以使用仅返回数据和布局等的回调

app.layout = html.Div([
dcc.Dropdown(
id='my_input',
value='A',
options=[{'label': i, 'value': i} for i in ["value_1","value_2"]]
),
dcc.Graph(id='my_graph')
])


@app.callback(Output('my_graph', 'figure'),
Input('my_input', 'value'))
def update_live_graph(value):
data = get_data() #assuming dataframe/dict for simplicity
return {
'data': [{
'x': data['x'],
'y': data['y'],
'line': {...} # line properties, could also be marker={...}
}],
'layout': {
# aesthetic options
'margin': {'l': 40, 'b': 40, 'r': 20, 't': 10},
'xaxis': {'showgrid': False, 'zeroline': False},
'yaxis': {'showgrid': False, 'zeroline': False}
}
}

但是返回数字通常比这更简洁,更容易理解,并且更不容易出错

关于python - 破折号 : updating a figure's data instead of updating graph's figure?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66389371/

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