返回破折号中的几条迹线图

时间:2020-03-31 03:23:53

标签: python plotly hyphen

我在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添加到该图?

1 个答案:

答案 0 :(得分:1)

您可以将跟踪列表简化为“数据”,如下所示:

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)]}