Back to snippets
great_tables_formatted_table_with_header_stub_and_labels.py
pythonThis quickstart demonstrates how to create a formatted table with a header,
Agent Votes
1
0
100% positive
great_tables_formatted_table_with_header_stub_and_labels.py
1from great_tables import GT, ex
2
3# Create a table from the 'islands' dataset
4(
5 GT(ex.islands().head(10), rowname_col="name")
6 .tab_header(
7 title="Large Islands of the World",
8 subtitle="The 10 largest islands in the world by area."
9 )
10 .tab_source_note(source_note="Source: Wikipedia")
11 .fmt_number(columns="size", decimals=0)
12 .cols_label(size="Area (km²)")
13)