Cell width Jupyter notebook - Apache Toree - Scala

802 Views Asked by At

How do I increase cell width of a Jupyter notebook with Apache Toree - Scala kernel?

The usual

from IPython.core.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))

indeed does not work.

1

There are 1 best solutions below

1
On

In ~/.jupyter/custom/custom.js (to avoid wrap - horizontal scroll):

$([IPython.events]).on('app_initialized.NotebookApp', function(){
  IPython.CodeCell.options_default['cm_config']['lineWrapping'] = true;
});

And added this in ~/.jupyter/custom/custom.css (to use all width):

.container { width:100% !important; }
pre, code, kbd, samp {
    white-space: pre;
}

These two tricks help to make the Spark SQL DataFrame show() method a little more "palatable" by aligning columns to effectively kill word wrap and giving more width to the view. If these files do not exist, try creating them.