Plotly: How to update one specific trace using updatemenus?(Plotly:如何使用 updatemenus 更新一个特定的跟踪?)
问题描述
这是 Plotly 的后续问题:
代码:
# 导入导入 plotly.graph_objs将熊猫导入为 pd将 numpy 导入为 np# 数据df1 = pd.DataFrame({'index': ['1','2','3'], 'A': [10,10,12], 'B': [11,11,11]})df2 = pd.DataFrame({'index': ['1','2','3'], 'A': [10,10,10], 'B': [11,11,12]})# 绘制图形设置fig=go.Figure()fig.add_trace(go.Scatter(x=df1['index'], y=df1['A'], mode='lines'))fig.add_trace(go.Scatter(x=df1['index'], y=df1['B'], mode='lines'))f=fig.to_dict()#fig.show()按钮=列表([dict(args=[{'y':[df1['A'],df1['B']]}],标签=df1",方法=重新设计";),dict(args=[{'y':[df2['A'], df2['B']]}],标签=df2",方法=重新设计";)])fig.update_layout(更新菜单=[go.layout.Updatemenu(按钮=按钮,方向=向下",pad={r":10,t":10},showactive=真,x=-0.25,xanchor=左",y=1,yanchor=顶部";),])图.show()在上面的代码段中,我使用按钮和 dict(args=[{'y':[df2['A'], df2['B']]}].这会为图中指定的 both 轨迹分配新值,如下所示 fig-to_dict:
'data': [{'mode': 'lines','x': 数组(['1', '2', '3'], dtype=object),'y': 数组([10, 10, 12], dtype=int64),'类型':'分散'},{'模式':'线','x': 数组(['1', '2', '3'], dtype=object),'y': 数组([11, 11, 11], dtype=int64),类型":分散"}]由于我已将列表 [df2['A'], df2['B']] 分配给 'y',因此我知道我打算在上面的代码片段中更新 'y' 的两个实例.但是在按钮和更新菜单的上下文中,有没有办法我可以指定 which 'y' 来更新(换句话说:什么特定的迹线或线).如果我只分配一个引用(在本例中为数组或 pandas 数据框),则两条迹线将显示相同的值.所以改变以下部分:
args=[{'y':[df2['A'], df2['B']]}]...用这个:
args=[{'y':[df2['A']]}]... 将在单击 df2 时生成以下图:
我真的很想保持所有未指定的 'y' 和痕迹不变.
感谢您的任何建议!
在您为每个 button 传递给 args 的列表中,您可以在dict 指示要更新的跟踪.例如,以下将仅更新第一个跟踪(即 index=0 处的跟踪)
buttons=list([dict(args=[{'y':[df1['A'],df1['B']]}, [0]], # 注意这里的`, [0]`!标签="df1",方法=重新样式"),dict(args=[{'y':[df2['A'], df2['B']]}, [0], # 注意这里的`, [0]`!标签="df2",方法=重新样式")])This is a follow-up question to Plotly: Plotly: How do the buttons for the update menus really work?
Consider the following plotly figure produced by the code snippet below:
Plot:
Code:
# imports
import plotly.graph_objs as go
import pandas as pd
import numpy as np
# data
df1 = pd.DataFrame({'index': ['1','2','3'], 'A': [10,10,12], 'B': [11,11,11]})
df2 = pd.DataFrame({'index': ['1','2','3'], 'A': [10,10,10], 'B': [11,11,12]})
# plotly figure setup
fig=go.Figure()
fig.add_trace(go.Scatter(x=df1['index'], y=df1['A'], mode='lines'))
fig.add_trace(go.Scatter(x=df1['index'], y=df1['B'], mode='lines'))
f=fig.to_dict()
#fig.show()
buttons=list([dict(args=[{'y':[df1['A'],df1['B']]}],
label="df1",
method="restyle"
),
dict(args=[{'y':[df2['A'], df2['B']]}],
label="df2",
method="restyle"
)
])
fig.update_layout(
updatemenus=[
go.layout.Updatemenu(
buttons=buttons,
direction="down",
pad={"r": 10, "t": 10},
showactive=True,
x=-0.25,
xanchor="left",
y=1,
yanchor="top"
),
]
)
fig.show()
In the snippet above, I'm updating the 'y' values using buttons and dict(args=[{'y':[df2['A'], df2['B']]}]. This assigns new values to both traces specified within the figure like this fig-to_dict:
'data': [{'mode': 'lines',
'x': array(['1', '2', '3'], dtype=object),
'y': array([10, 10, 12], dtype=int64),
'type': 'scatter'},
{'mode': 'lines',
'x': array(['1', '2', '3'], dtype=object),
'y': array([11, 11, 11], dtype=int64),
'type': 'scatter'}]
Since I've assigned the list [df2['A'], df2['B']] to 'y', plotly knows that I intend to update both instances of 'y' in the snippet above. But within the context of buttons and update menus, is there a way I can specify which 'y' to update (in other words: what specific trace or line).
If I assign only one reference (array or pandas dataframe in this case), both traces will show the same values. So changing the following part:
args=[{'y':[df2['A'], df2['B']]}]
...with this:
args=[{'y':[df2['A']]}]
... will produce the following plot upon clicking df2:
And I'd really like to keep all unspecified 'y' and traces unchanged.
Thank you for any suggestions!
In the list you are passing to args for each button, you can add an integer after the dict to indicate which trace you want to update. For example the following will update the first trace only (i.e. the one at index=0)
buttons=list([dict(args=[{'y':[df1['A'],df1['B']]}, [0]], # note the `, [0]` here!
label="df1",
method="restyle"
),
dict(args=[{'y':[df2['A'], df2['B']]}, [0], # note the `, [0]` here!
label="df2",
method="restyle"
)
])
这篇关于Plotly:如何使用 updatemenus 更新一个特定的跟踪?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Plotly:如何使用 updatemenus 更新一个特定的跟踪?
基础教程推荐
- 尝试制作WhatsApp机器人 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
