Jupyter Notebook: multiple laptops for one core?

I am doing some complicated work with a Jupyter laptop, so the laptop is very long ( https://github.com/cqcn1991/Wind-Speed-Analysis ).

Sometimes, in the middle of a laptop, I want to do additional analysis. Adding them directly to the current notebook (in the middle) can make it more complex and breaks its current structure. I think it would be great if I could just open another laptop, connect it to the existing laptop core, and then do additional analysis.

Something may like

# In the new notebook
connect_to 'exisiting_notebook_name' # get access to the existing notebook
df.describe()
# ...
# some additional analysis works
+4
source share
1 answer
+1

Source: https://habr.com/ru/post/1651885/


All Articles