my-awesome-project/new-notebook.ipynb

39 KiB

In [1]:
import numpy as np
import matplotlib.pyplot as plt
In [2]:
x = np.arange(100)
In [3]:
plt.plot(x,x*x,x,x*x*x);
No description has been provided for this image
In [4]:
plt.plot(x,1/x)
/tmp/ipykernel_709/3399443285.py:1: RuntimeWarning: divide by zero encountered in divide
  plt.plot(x,1/x)
Out[4]:
[<matplotlib.lines.Line2D at 0x7f37a66e5db0>]
No description has been provided for this image
In [ ]: