mwouts / itables

Pandas DataFrames as Interactive DataTables
https://mwouts.github.io/itables/
MIT License
757 stars 56 forks source link

Does not work for me #29

Closed johann-petrak closed 2 years ago

johann-petrak commented 2 years ago

Shows only the header line for a dataframe.

Using itables 0.3.0 in a jupyter notebook

IPython          : 7.28.0
ipykernel        : 6.4.1
ipywidgets       : not installed
jupyter_client   : 7.0.6
jupyter_core     : 4.8.1
jupyter_server   : not installed
jupyterlab       : not installed
nbclient         : not installed
nbconvert        : not installed
nbformat         : not installed
notebook         : not installed
qtconsole        : not installed
traitlets        : 5.1.0
schwabts commented 2 years ago

Using itables was not straighforward for me either. In the end I got started by following the steps in

https://mwouts.github.io/itables/

which comes down to executing these lines in a notebook:

!pip install itables
!pip install world_bank_data

from itables import init_notebook_mode
init_notebook_mode(all_interactive=True)
import world_bank_data as wb

df = wb.get_countries()
df
mwouts commented 2 years ago

Well, I think there are significant chances that version 0.4.0 (to be released soon) will work better. If not, would you mind opening a new issue? I'll also need to see the browser logs. Thanks