将第二个绘图添加到plt.plot

时间:2018-03-22 01:03:35

标签: python-3.x matplotlib

你好第6行的语法无效

x = []
y = []
x2 = []
y2 = []
plt.plot(x,y,label=(+str(incur1)+ '/' +str(incur2))
plt.plot(x2,y2,label=(+str(incur2)+ '/' +str(incur1))
plt.xlabel ('Time')
plt.ylabel ('Ex Rate')
plt.title (+incur1+ '/' +incur2+ '/nEx Rate Data')
plt.legend()

稍后会添加数据和日期时间

time = t.datetime
x.append(time)
y.append(first_exRtRate1)  

尝试制作字符串

label1 = (incur1+ '/' +incur2)
label2 = (incur2+ '/' +incur1)

然后

plt.plot(x,y,label=(+str(label1))

仍然是错误 被告知失踪a) 试图

plt.plot(x,y,label=(+str(incur1)+ '/' +str(incur2)))

仍然是错误

1 个答案:

答案 0 :(得分:0)

解决了

label1 = (incur1+ '/' +incur2)

plt.plot(x, y, label = label1)