Module pandas_profiling.utils.notebook
Utility functions that come in handy when working with Jupyter notebooks
Expand source code
"""Utility functions that come in handy when working with Jupyter notebooks"""
def full_width():
"""Resize the notebook to use it's full width"""
from IPython.core.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
Functions
def full_width()
-
Resize the notebook to use it's full width
Expand source code
def full_width(): """Resize the notebook to use it's full width""" from IPython.core.display import display, HTML display(HTML("<style>.container { width:100% !important; }</style>"))