Plot Line Chart (List vs Pandas DataFrame)
Link
plt.figure(0)
barchart = plt.bar(y, x1)
linechart = plt.plot(y, x2)
Bar & Line in One graph
x2=[5]*3 # [5,5,5]
Initialize Array