Options and settings#
2025-07-04
21 min read time
|
Get the value of option. |
|
Set the value of option. |
|
Prints the description of an option. |
|
Context manager to temporarily set options in the with statement context. |
Display options are controlled by pandas#
Options for display are inherited from pandas. This includes commonly accessed options such as:
display.max_columnsdisplay.max_info_rowsdisplay.max_rowsdisplay.max_seq_items
For example, to show all rows of a DataFrame or Series in a Jupyter notebook, call pandas.set_option("display.max_rows", None).
See also the full list of pandas display options.
Available options#
You can get a list of available options and their descriptions with describe_option(). When called
with no argument describe_option() will print out the descriptions for all available options.