import pandas as pd
from great_tables import GT
# Sample data
data = {
"Name": ["Alice", "Bob", "Charlie"],
"Age": [25, 30, 35],
"Score": [88, 92, 85]
}
df = pd.DataFrame(data)
# Create a gt table
table = GT(df)Tables
There seem to be be a difference between the caption of Table 1 and Table S1.
table| Name | Age | Score |
|---|---|---|
| Alice | 25 | 88 |
| Bob | 30 | 92 |
| Charlie | 35 | 85 |
table| Name | Age | Score |
|---|---|---|
| Alice | 25 | 88 |
| Bob | 30 | 92 |
| Charlie | 35 | 85 |