Notepad/enter/Coding Tips (Classical)/Terminal Tips/Languages/Python/tools/IPython/Jupyter.md

1.4 KiB

Jupyter

Ah yes jupyter notebooks. That thing that you thought was only used for data science and not real programmers because you never really used it in your undergrad or even masters CS classes and then realized that maybe you really aren't a real programmer then and now here you are.

Because it has widespread use and you should probably know this stuff.

Jupyter shortcuts

You know that you can run jupyter straight up inside of Obsidian right?

Install jupyter for obsidian. The python interpreter should be set to the path /usr/bin/python

import numpy as np 
from matplotlib import pyplot as plt 

x = np.linspace(0,1)
y = np.exp(-x) * np.sin(4 * np.pi * x)
plt.plot(x,y)
pass

Extensions on extensions on extensions.


Ways to do things: