In [1]:
%matplotlib inline
import matplotlib.pyplot as plt
In [3]:
plt.plot([1, 2, 3], [2, 5, 6]);
In [4]:
plt.scatter([1, 2, 3], [2, 5, 6]);
In [ ]: