gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 02:52:08 26 4
gpt4 key购买 nike

我的子图之间有很大的空间。在 matplotlib 中,有一种称为紧密布局的布局可以消除这种情况。 plotly 有没有类似的布局?我正在 iPython 笔记本中绘图,因此空间有限。请参阅下图中的空间。

enter image description here

最佳答案

就在这里!您可以使用 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 subplots 页面上找到更多教程: Plotly subplots tutorial

关于plotly - 删除 Plotly 中子图之间的空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31526045/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com