Enter search terms or a module, class or function name.
pandas.
option_context
Context manager to temporarily set options in the with statement context.
You need to invoke as option_context(pat, val, [(pat, val), ...]).
option_context(pat, val, [(pat, val), ...])
Examples
>>> with option_context('display.max_rows', 10, 'display.max_columns', 5): ...