Created
February 25, 2021 06:25
-
-
Save fish8/92d24f1614069aec84db9bb3788f9fbf to your computer and use it in GitHub Desktop.
itables qgrid datatables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#itables | |
from itables import init_notebook_mode | |
init_notebook_mode(all_interactive=True) | |
import world_bank_data as wb | |
df = wb.get_countries() | |
df | |
#qgrid | |
qgrid.show... | |
#jupyter datatables | |
#seems doesn't work with geometry | |
#kind of fancy with dist for each column | |
#full data with pager | |
from jupyter_datatables import init_datatables_mode | |
init_datatables_mode() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment