| name | great-tables-common-issues |
| description | Sub-skill of great-tables: Common Issues. |
| version | 1.0.0 |
| category | data-analysis |
| type | reference |
| scripts_exempt | true |
Common Issues
Common Issues
Issue: Table not displaying in Jupyter
from great_tables import GT
table = GT(df)
display(table)
Issue: HTML export looks different
table.save("output.html")
Issue: Image export not working
pip install webshot
pip install playwright
playwright install chromium
table.save("output.png", web_driver="playwright")
Issue: Slow with large DataFrames
df_display = df.head(100)
table = GT(df_display)
Issue: Special characters not rendering
from great_tables import html
cell_content = html("€ 100")