在Plotly Express中出现了额外的未知线。

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

我目前正在使用 plotly express 生成一个线图,这是我使用的代码。

fig = px.line(run, x="day", y= 'infected', title= 'Mass Testing at 60% Simulations')


fig.update_layout(
    xaxis_title="Day",
    yaxis_title= measure.capitalize(),
    legend_title = 'Quarantine Delay (Days)',
    title={
        'y':0.9,
        'x':0.5,
        'xanchor': 'center',
        'yanchor': 'top'}
)

py.plot(fig, filename= name + '.html')

这就是数据集的样子。

enter image description here

它有2组被比较的日子。Plotly生成了我想要的线条,但是由于某些原因,第三条线出现了,但没有任何悬停细节出现(在这张图片上以黄色突出显示)。

enter image description here

我不太确定问题出在哪里,我仔细检查了数据集,只需要有2组天数被比较,但不知何故第3条线被生成了。

python pandas plotly
1个回答
1
投票

这是你的 "日 "列--你可以通过它是线性的事实来猜测。

© www.soinside.com 2019 - 2024. All rights reserved.