3

我有三个痕迹,其中一个在一个子图中,其中两个在另一个子图中。我希望子图中的每条迹线都有一个不同的 y 轴,有 2 条迹线。

例如,我有

fig = plotly.tools.make_subplots(rows=2, cols=1, shared_xaxes=True)
fig.append_trace(trace1, 1, 1)
fig.append_trace(trace2, 1, 1)
fig.append_trace(trace3, 2, 1)
fig['layout'].update(height=200, width=400)

产生

在此处输入图像描述

当我没有子图时,我可以获得第二条轨迹的第二个轴

layout = go.Layout(
    yaxis=dict(
        title='y for trace1'
    ),
    yaxis2=dict(
        title='y for trace2',
        titlefont=dict(
            color='rgb(148, 103, 189)'
        ),
        tickfont=dict(
            color='rgb(148, 103, 189)'
        ),
        overlaying='y',
        side='right'
    )
)
fig = go.Figure(data=data, layout=layout)

产生

在此处输入图像描述

但是我不知道如何让第一个示例中的第一个子图看起来像第二个示例中的图:那里的第二个轨迹有一个不同的轴。

如何在 Plotly 子图中为第二条轨迹添加轴?

4

1 回答 1

1

这是一种解决方法,但它似乎有效:

import plotly as py
import plotly.graph_objs as go
from plotly import tools
import numpy as np

left_trace = go.Scatter(x = np.random.randn(1000), y = np.random.randn(1000), yaxis = "y1", mode = "markers")
right_traces = []
right_traces.append(go.Scatter(x = np.random.randn(1000), y = np.random.randn(1000), yaxis = "y2", mode = "markers"))
right_traces.append(go.Scatter(x = np.random.randn(1000) * 10, y = np.random.randn(1000) * 10, yaxis = "y3", mode = "markers"))

fig = tools.make_subplots(rows = 1, cols = 2)
fig.append_trace(left_trace, 1, 1)
for trace in right_traces:
  yaxis = trace["yaxis"] # Store the yaxis
  fig.append_trace(trace, 1, 2)
  fig["data"][-1].update(yaxis = yaxis) # Update the appended trace with the yaxis

fig["layout"]["yaxis1"].update(range = [0, 3], anchor = "x1", side = "left")
fig["layout"]["yaxis2"].update(range = [0, 3], anchor = "x2", side = "left")
fig["layout"]["yaxis3"].update(range = [0, 30], anchor = "x2", side = "right", overlaying = "y2")

py.offline.plot(fig)

产生这个,在trace0第一个子图中绘制在 上yaxis1,并且trace1trace2第二个子图中,分别绘制在yaxis2(0-3) 和yaxis3(0-30) 上: 在此处输入图像描述

当跟踪附加到子图时,xaxis 和 yaxis 似乎被覆盖了,或者这就是我对这个讨论的理解。

于 2017-03-07T14:54:50.913 回答