chrise
chrise

Reputation: 4253

Jupyterlab split cell into 2 columns

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

Answers (2)

Jonathan Fuchs
Jonathan Fuchs

Reputation: 21

  1. First install nbextensions:

    conda install -c conda-forge jupyter_contrib_nbextensions conda install -c conda-forge jupyter_nbextensions_configurator

  2. Turn on 'split Cells Notebook in the configurator (see picture)

nbextension configurator

3. Use the addon inside the notebook to split a cell:

Inside the notebook

Upvotes: 2

swapnil athawale
swapnil athawale

Reputation: 31

Just a work-around.

  • Create another untitled notebook.
  • separate original and new notebooks view in half.
  • move the desired cells to other notebook.

(you don't have to execute cells , just copy and paste in other notebook).

Upvotes: 0

Related Questions