In [ ]:
%matplotlib inline
%config InlineBackend.figure_format = 'retina'
import matplotlib.pyplot as plt
import numpy as np
This is some text!
In [ ]:
x = np.arange(10)
y = x ** 2 + np.random.normal(0., 8., size=x.size)
plt.plot(x, y, '.')