大家好!我需要在单个图形中使用来自四个数组的matplotlib(不一定)绘制多条线。目前我的代码是
plt.plot(PTime,PReactions,NYTime,NYReactions,LTime,LReactions,SFTime,SFReactions)
plt.show()
PTime和PReactions是数组的名称,依此类推 这是上面代码的输出:
但我不想要这种类型的图表。我想要多行代表不同的数组(不同的数据) 我想要与此类似的结果:
答案 0 :(得分:0)
您的数据显示顺序错误。必须是X, Y
:
plt.plot(PReactions, PTime)
plt.plot(NYReactions, NYTime)
plt.plot(LReactions, LTime)
plt.plot(SFReactions, SFTime)
plt.show()
答案 1 :(得分:0)