1from matplotlib import pyplot as plt
2
3import matplotlib.pyplot as plt1
4
5print(dir(plt) == dir(plt1))
6True
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 ...')