cqc*_*991 6 python jupyter jupyter-notebook
我正在使用Jupyter Notebook做一些复杂的工作,所以笔记本很长(https://github.com/cqcn1991/Wind-Speed-Analysis).
有时,在笔记本中间,我想做一些额外的分析.将它们直接添加到当前笔记本中(中间)可能会使它更复杂,并打破其当前的结构.我想如果我可以简单地打开另一个笔记本,将它连接到现有笔记本的内核,然后进行额外的分析,那将是惊人的.
有点像
# In the new notebook
connect_to 'exisiting_notebook_name' # get access to the existing notebook
df.describe()
# ...
# some additional analysis works
Run Code Online (Sandbox Code Playgroud)