my-awesome-project/new-notebook.ipynb

2.7 KiB

In [2]:
import numpy as np
import matplotlib.pyplot as plt
In [3]:
x = np.arange(100)
In [1]:
plt.plot(x,x*x,x,x*x*x);
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
Cell In[1], line 1
----> 1 plt.plot(x,x*x,x,x*x*x)

NameError: name 'plt' is not defined
In [2]:
plt.plot(x,1/x)
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
Cell In[2], line 1
----> 1 plt.plot(x,1/x)

NameError: name 'plt' is not defined
In [ ]: