I use python notebook (browser) often.
There’s a vertical scrollbar on a cell, but no horizontal scrollbar to allow me to access columns on the right side of a cell:
The only way I found to see columns on the right is to select text in the displayed dataframe, and drag the mouse to the right.
I’ve tried pandas options:
pd.set_option('display.max_columns', 70)
pd.set_option('display.max_rows', 500)
pd.set_option('display.width', 1000)
from IPython.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
I’ve even tried full screen, and dragging the ‘expand’ icon on a cell, nothing works.
Am I missing something really obvious ?