gpt4 book ai didi

python - 删除 Jupyter Notebook 中的 plotly 子图中的 "This is the format of your plot grid:"

转载 作者:太空狗 更新时间:2023-10-29 17:11:17 24 4
gpt4 key购买 nike

在 Jupyter Notebook 中使用 Plotly 绘制带有子图的离线 iplot 图时,在图之前我得到输出:

This is the format of your plot grid: 
[ (1,1) x1,y1 ] [ (1,2) x2,y2 ] [ (1,3) x3,y3 ] [ (1,4) x4,y4 ]
[ (2,1) x5,y5 ] [ (2,2) x6,y6 ] [ (2,3) x7,y7 ] [ (2,4) x8,y8 ]
[ (3,1) x9,y9 ] [ (3,2) x10,y10 ] [ (3,3) x11,y11 ] [ (3,4) x12,y12 ]
[ (4,1) x13,y13 ] [ (4,2) x14,y14 ] [ (4,3) x15,y15 ] [ (4,4) x16,y16 ]

如何从输出中删除它?

示例代码:

import plotly as pl
import plotly.graph_objs as go
import numpy as np

fig = pl.tools.make_subplots(cols=4, rows=4)

for col in range(1, 5):
for row in range(1, 5):
x = np.random.rand(500)
trace = go.Histogram(x=x, histnorm='density')
fig.append_trace(trace, row, col)

pl.offline.iplot(fig)

最佳答案

搞清楚了,将print_grid参数设置为False:

fig = pl.tools.make_subplots(cols=4, rows=4, print_grid=False)

我发现了

help(pl.tools.make_subplots)

关于python - 删除 Jupyter Notebook 中的 plotly 子图中的 "This is the format of your plot grid:",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43106170/

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