使用Plotly的make_subplots方法可以创建一个包含多个子图的图形。下面是一个使用make_subplots方法的示例:
import plotly.graph_objects as go from plotly.subplots import make_subplots # 创建子图 fig = make_subplots(rows=2, cols=2) # 添加子图 fig.add_trace(go.Scatter(x=[1, 2, 3], y=[4, 5, 6]), row=1, col=1) fig.add_trace(go.Bar(x=[1, 2, 3], y=[4, 5, 6]), row=1, col=2) fig.add_trace(go.Pie(values=[40, 30, 20]), row=2, col=1) fig.add_trace(go.Scatter(x=[1, 2, 3], y=[10, 11, 12]), row=2, col=2) # 更新布局 fig.update_layout(title_text="Subplots Example") # 显示图形 fig.show()
在这个示例中,我们首先使用make_subplots方法创建一个2x2的子图布局。然后我们使用add_trace方法在每个子图中添加不同类型的图形。最后,我们使用update_layout方法设置整个图形的标题,并使用show方法显示图形。