my-awesome-project/new-notebook.ipynb

22 KiB

In [1]:
import numpy as np
import matplotlib.pyplot as plt
In [3]:
x = np.arange(100)
In [5]:
plt.plot(x,x*x,x,x*x*x)
Out[5]:
[<matplotlib.lines.Line2D at 0x7fb1467e3250>,
 <matplotlib.lines.Line2D at 0x7fb1467e32b0>]
No description has been provided for this image
In [ ]: