以虚线返回多个迹线图

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

我在python中有一个基本的SIR模型,我想为其创建破折号应用程序。我原来的情节看起来像这样:

enter image description here

目前,我能够创建一个如下所示的虚线图:

enter image description here

此问题是我只能发送绘图轨迹,为此我在回调方法中使用以下代码:

s, e, i, r,x = seir_model(h,transmission_coeff,latency_time,infectious_time,end_time,
          initial_s,initial_e,initial_i,initial_r)



return {"data":[go.Scatter(x=x,
                y=s)]}

如何将其余向量:e,i,r添加到该图?

python plotly hyphen
1个回答
0
投票

您可以将跟踪列表简单地传递到“数据”,如下所示:

return {"data":[go.Scatter(x=x,y=s),
                go.Scatter(x=x,y=i),
                go.Scatter(x=x,y=r),
                go.Scatter(x=x,y=e)]}
© www.soinside.com 2019 - 2024. All rights reserved.