I have a clarification question to the associated question (How to see all columns of of DuckDb relation while printing it using show command). Currently using the Python API. Is there a way to configure it so that the outputted tables are not truncated like the screenshot below and displays all columns within the data? I have tried to look through the python API documentation (/) but it seems show()
only has a max_rows
setting but not a max_column
.
Ideally looking for something similar to Panda's set_option
panda.set_option("display.max_columns", None)
Thank you in advance!