how to add x y and header to matplotlib code example
Example 1: add x axis label python
plt.xlabel("X axis label")
Example 2: pylab plotting data
pylab.plot(x, y)
pylab.xlabel('this is x!')
pylab.ylabel('this is y!')
pylab.title('My First Plot')