Make your Jupyter Notebook/IPython full width
Lately i’m doing a lot of Data Engineering in Python. Using Jupyter Notebooks is great for quick development and visualisation. However the default width is limited nowadays with the widescreen monitors. Here are some ways to use the full width of your browser.
With HTMl magic
Cell:
With Python
Make sure you have the ipython library installed. pip install IPython
Cell:
Jupyter Custom CSS
Create a file .jupyter/custom/custom.css
with the content:
IPython Custom CSS
Create a file ~/.ipython/profile_default/static/css/custom.css
with the content:
Note: path can change if you use conda or other virtual python environments.