You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a new test.py file and put the following in it:
#%%
import matplotlib.pyplot as plt
import matplotlib as mpl
import numpy as np
x = np.linspace(0, 20, 100)
plt.plot(x, np.sin(x))
plt.show()
x = np.linspace(0, 40, 100)
plt.plot(x, np.sin(x))
plt.show()
Click on the Run Cell that shows up. It will let you Start a new notebook or Select an Existing Notebook. Choose a new one and it should show the results on the side.
Works surprisingly well!
The text was updated successfully, but these errors were encountered:
test.py
file and put the following in it:Run Cell
that shows up. It will let youStart a new notebook
orSelect an Existing Notebook
. Choose a new one and it should show the results on the side.The text was updated successfully, but these errors were encountered: