You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If one runs the code from the docs intro from the REPL:
fromgreat_tablesimportGT, md, htmlfromgreat_tables.dataimportislandsislands_mini=islands.head(10)
# Create a display table showing ten of the largest islands in the worldgt_tbl=GT(islands_mini)
# Show the output tablegt_tbl
it produces...not a great table:
If run as a script:
pythongreat-tables-intro.py
it produces...nothing:
seems like the intro, in order to just work™️, should be updated to:
Thanks for raising this. The trick here is to call the show() method on gt_tbl (which then should open the default browser and display the table in a new page). We mention this in the README but not in the Get Started guide. So, I think there should be a callout there.
I'll also try to reproduce the script-running method (with show()) to see if that works.
If one runs the code from the docs intro from the REPL:
it produces...not a great table:
If run as a script:
it produces...nothing:
seems like the intro, in order to just work™️, should be updated to:
The text was updated successfully, but these errors were encountered: