-
Hello everyone! I’m quite new to python, so this must be a redundant question, but I’m having trouble saving the table I’m trying to make, specifically with the self argument. This is what I have:
after running, it says the self argument is required, thought I’m not sure how to incorporate it. Any help? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@Sat1ro, from great_tables import GT
from great_tables.data import countrypops
gt = GT(countrypops.head())
gt.save("BC_crec_4m.png", selector='table', scale=1.0, expand=5, window_size=(6000, 6000)) |
Beta Was this translation helpful? Give feedback.
-
I'll close the discussion since the issue appears to be resolved. |
Beta Was this translation helpful? Give feedback.
@Sat1ro,
gt
should be an instance ofGT
. For example: