You are on page 1of 1

>>> d=DataFrame([[101],[111],[121],[131],[141]],columns=["student number"])

>>> d
student number
0 101
1 111
2 121
3 131
4 141

>>> d['student number']


>>> from matplotlib import pyplot
>>> pyplot.plot([1,2,3,4,5],d['student number'])
>>> pyplot.show()

You might also like