Screen Link:
https://app.dataquest.io/m/143/multiple-plots/7/comparing-across-more-years
My Code:
for i in range(5):
ax = fig.add_subplot(5,1,i+1)
start_index = i*12
end_index = (i+1)*12
subset = unrate[start_index:end_index]
ax.plot(subset['DATE'], subset['VALUE']
plt.show()
What I expected to happen: Display plots
What actually happened:
File "<ipython-input-1-58878cad1762>", line 11
plt.show()
^
SyntaxError: invalid syntax