在Plotly中制作具有自己的单独YAxes记号标签的多面图,可以通过以下步骤实现:
import plotly.graph_objects as go
from plotly.subplots import make_subplots
fig = make_subplots(specs=[[{"secondary_y": True}]])
fig.add_trace(go.Scatter(x=data_x, y=data_y1, name="Y1", line=dict(color='blue')), secondary_y=False)
fig.update_yaxes(title_text="Y1 Label", secondary_y=False)
fig.add_trace(go.Scatter(x=data_x, y=data_y2, name="Y2", line=dict(color='red')), secondary_y=True)
fig.update_yaxes(title_text="Y2 Label", secondary_y=True)
fig.update_layout(title="Multiple Y-Axes Plot",
xaxis=dict(title="X Label"),
legend=dict(x=0, y=1, traceorder="normal"),
width=800, height=500)
fig.show()
这样就可以在Plotly中制作具有自己的单独YAxes记号标签的多面图了。
关于Plotly的更多信息和使用方法,可以参考腾讯云的数据可视化产品GraphDB的介绍页面:https://cloud.tencent.com/product/graphdb
领取专属 10元无门槛券
手把手带您无忧上云