如何在 Plotly 中启用和禁用对数刻度作为查看器?
How to enable and disable the logarithmic scale as a viewer in Plotly?
我最近在探索 Plotly,我想知道是否有一种方法可以共享绘图并让查看者在对数轴和线性轴之间切换。
有什么建议吗?
Plotly 具有 dropdown 功能,允许用户动态更新绘图样式 and/or 显示的轨迹。下面是绘图的最小工作示例,用户可以在其中切换对数和线性刻度。
import plotly
import plotly.graph_objs as go
x = [1, 2, 3]
y = [1000, 10000, 100000]
y2 = [5000, 10000, 90000]
trace1 = go.Bar(x=x, y=y, name='trace1')
trace2 = go.Bar(x=x, y=y2, name='trace2', visible=False)
data = [trace1, trace2]
updatemenus = list([
dict(active=1,
buttons=list([
dict(label='Log Scale',
method='update',
args=[{'visible': [True, True]},
{'title': 'Log scale',
'yaxis': {'type': 'log'}}]),
dict(label='Linear Scale',
method='update',
args=[{'visible': [True, False]},
{'title': 'Linear scale',
'yaxis': {'type': 'linear'}}])
]),
)
])
layout = dict(updatemenus=updatemenus, title='Linear scale')
fig = go.Figure(data=data, layout=layout)
plotly.offline.iplot(fig)
我在 data
列表中添加了两条迹线,以展示如何在图中添加或删除迹线。对于每个 button
.
,这可以通过 updatemenus
中的 visible
列表来控制
我最近在探索 Plotly,我想知道是否有一种方法可以共享绘图并让查看者在对数轴和线性轴之间切换。
有什么建议吗?
Plotly 具有 dropdown 功能,允许用户动态更新绘图样式 and/or 显示的轨迹。下面是绘图的最小工作示例,用户可以在其中切换对数和线性刻度。
import plotly
import plotly.graph_objs as go
x = [1, 2, 3]
y = [1000, 10000, 100000]
y2 = [5000, 10000, 90000]
trace1 = go.Bar(x=x, y=y, name='trace1')
trace2 = go.Bar(x=x, y=y2, name='trace2', visible=False)
data = [trace1, trace2]
updatemenus = list([
dict(active=1,
buttons=list([
dict(label='Log Scale',
method='update',
args=[{'visible': [True, True]},
{'title': 'Log scale',
'yaxis': {'type': 'log'}}]),
dict(label='Linear Scale',
method='update',
args=[{'visible': [True, False]},
{'title': 'Linear scale',
'yaxis': {'type': 'linear'}}])
]),
)
])
layout = dict(updatemenus=updatemenus, title='Linear scale')
fig = go.Figure(data=data, layout=layout)
plotly.offline.iplot(fig)
我在 data
列表中添加了两条迹线,以展示如何在图中添加或删除迹线。对于每个 button
.
updatemenus
中的 visible
列表来控制