1ax.legend(loc='upper center', bbox_to_anchor=(0.5, 1.05),
2 ncol=3, fancybox=True, shadow=True)
1import matplotlib.pyplot as plt
2%matplotlib inline
3plt.plot(data)
4#this is not nessisary but makes your plot more readable
5plt.ylabel('y axis means ...')
6plt.xlabel('x axis means ...')