Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion third_party/bigframes_vendored/pandas/core/config_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,21 @@
User can execute the job by calling .to_pandas()
>>> # df.to_pandas()

Reset option
Reset repr_mode option
>>> bpd.options.display.repr_mode = "head"

Can also set the progress_bar option to see the progress bar in terminal,
>>> bpd.options.display.progress_bar = "terminal"

notebook,
>>> bpd.options.display.progress_bar = "notebook"

or just remove it.
>>> bpd.options.display.progress_bar = None

Setting to default value "auto" will detect and show progress bar automatically.
>>> bpd.options.display.progress_bar = "auto"

Attributes:
max_columns (int, default 20):
If `max_columns` is exceeded, switch to truncate view.
Expand Down