#!/usr/bin/env python # coding: utf-8 # In[5]: #should not be included in tags, but everything else should except last cell import numpy as np import matplotlib import matplotlib.pyplot as plt get_ipython().run_line_magic('matplotlib', 'inline') # # In[6]: a = np.array([1,2,3,4,5,6]) # In[7]: a # ## $$y = mx + b $$ # In[8]: plt.plot(a,a) # "end" # ## END CELL # In[ ]: