serhii.net

In the middle of the desert you can say anything you want

11 May 2023

jupyter pandas interactive tables

mwouts/itables: Pandas DataFrames as Interactive DataTables:

from itables import init_notebook_mode

init_notebook_mode(all_interactive=True)

It kept “loading”. I set the notebook to ’trusted’ as per help, didn’t help.

But this did:

init_notebook_mode(all_interactive=True, connected=True)

(connected=True makes it load libraries dynamically from the internet, and is not the default)

Allows more interesting interactive dynamical tables. Incl. things like sorting by column etc.

Nel mezzo del deserto posso dire tutto quello che voglio.