删除Plotly中子图之间的空间?

时间:2015-07-20 20:47:05

标签: plotly

我的副图之间有一个很大的空间。在matplotlib中,有一个称为紧密布局的布局可以删除它。在情节上有任何类似的布局吗?我正在使用iPython笔记本进行绘图,因此空间有限。请参见下图中的空白区域。

enter image description here

1 个答案:

答案 0 :(得分:17)

是的!您可以使用specsvertical_spacinghorizontal_spacing。以下是horizontal_spacing的示例:

from plotly import tools
import plotly.plotly as py
from plotly.graph_objs import *

trace1 = Scatter(
     x=[1, 2, 3],
     y=[4, 5, 6]
)
trace2 = Scatter(
     x=[20, 30, 40],
     y=[50, 60, 70],
)

fig = tools.make_subplots(rows = 1, cols = 2, specs = [[{}, {}]],
                          horizontal_spacing = 0.05)

fig.append_trace(trace1, 1, 1)
fig.append_trace(trace2, 1, 2)

py.iplot(fig, filename='make-subplot-horizontal_spacing')

here is the plot

您可以在Plotly子图页面上找到更多教程:Plotly subplots tutorial