1import matplotlib.pyplot as plt
2
3Year = [1920,1930,1940,1950,1960,1970,1980,1990,2000,2010]
4Unemployment_Rate = [9.8,12,8,7.2,6.9,7,6.5,6.2,5.5,6.3]
5
6plt.plot(Year, Unemployment_Rate)
7plt.title('Unemployment Rate Vs Year')
8plt.xlabel('Year')
9plt.ylabel('Unemployment Rate')
10plt.show()
11