在使用 plotly express 保存图像时卡住代码

问题描述 投票:0回答:0

我在尝试使用 plotly express 将图像保存为 png 时遇到问题。

我不知道为什么,但代码卡在那里。

fig = px.line(BV01_VOC_t, x=dates, y=y_data, template="simple_white", labels={"index": "Tempo Trascorso [h]","value": "VOC [ppm]"},markers=True)
fig.update_layout(
    xaxis = dict(
        tickmode = 'array',
        tickvals = dates,
        ticktext = ["00:00","00:05","00:10","00:25","00:30","1:00","2:00",'4:00','8:00','24:00','48:00','72:00','96:00']
    )
)

if BV01_VOC_t.max().max() > 1:
    max_yaxis=math.ceil(BV01_VOC_t.max().max())+(math.ceil(BV01_VOC_t.max().max()*0.5))
else:
    max_yaxis=math.ceil(BV01_VOC_t.max().max())
    
fig.update_layout(title_text='BV01 - Test di Biodegradazione: andamento concentrazione di VOC',title_x=0.5)
fig.update_layout(yaxis_range=[0,max_yaxis]) 
fig.update_layout(xaxis_range=[0,4000])
fig.update_xaxes(showgrid=True,tickangle=90)
fig.update_yaxes(showgrid=True)
fig.write_image("test.png")
fig.show()

知道为什么吗?

谢谢

我不确定我可以在这里改变什么,或者为什么我会遇到这个问题。

python express plotly
© www.soinside.com 2019 - 2024. All rights reserved.