Options and settings#

2025-07-04

21 min read time

Applies to Linux

hipdf.get_option(name)

Get the value of option.

hipdf.set_option(name, val)

Set the value of option.

hipdf.describe_option([name])

Prints the description of an option.

hipdf.option_context(*args)

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_columns

  • display.max_info_rows

  • display.max_rows

  • display.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.