Reputation: 4253
I vaguely recall seeing split cells in jupyter notebook. I think this was done via changing the cell style to split. However, I can't find anything in jupyterlab that seems to do that. What I am trying to look for is the functionality to split one cell so that I can easily have a table and a chart next to each other. Is that possible?
Upvotes: 5
Views: 3966
Reputation: 21
First install nbextensions:
conda install -c conda-forge jupyter_contrib_nbextensions conda install -c conda-forge jupyter_nbextensions_configurator
Turn on 'split Cells Notebook in the configurator (see picture)
3. Use the addon inside the notebook to split a cell:
Upvotes: 2
Reputation: 31
Just a work-around.
(you don't have to execute cells , just copy and paste in other notebook).
Upvotes: 0