Is it possible to add a cell on the side of another cell, splitting the screen vertically? This seems very useful when comparing two lists of things.
I don't see this options supported out of the box, so I am guessing it would require some extra js?
Is it possible to add a cell on the side of another cell, splitting the screen vertically? This seems very useful when comparing two lists of things.
I don't see this options supported out of the box, so I am guessing it would require some extra js?
This is now possible in JupyterLab. See this example:
...there is a menu item to create a new side-by-side view of that same notebook that will remain synchronized with the other view:
Note that JupyterLab will eventually replace Jupyter Notebook. See this answer.
This functionality has been merged on GitHub and will be in the 3.2 release. Go to View -> Render side by side
This is not possible at the moment (April 12th 2016), but there is a ticket in the Jupyter github issues that mentions that "soon" we will be able to open several notebooks in the same browser tab; That would allow for the side by side comparisons you are looking for.
Yes, it is possible. Follow steps below.
>>> pip install jupyter_nbextensions_configurator jupyter_contrib_nbextensions
>>> jupyter contrib nbextension install --user
>>> jupyter nbextensions_configurator enable --user
Enable Splitcell extension
Open Jupyter notebook
And don't forget to check out other awesome extensions. Enjoy.