xray.set_options

class xray.set_options(**kwargs)

Set global state within a controlled context

Currently, the only supported option is display_width, which has a default value of 80.

You can use set_options either as a context manager:

>>> ds = xray.Dataset({'x': np.arange(1000)})
>>> with xray.set_options(display_width=40):
...     print(ds)
<xray.Dataset>
Dimensions:  (x: 1000)
Coordinates:
  * x        (x) int64 0 1 2 3 4 5 6 ...
Data variables:
    *empty*

Or to set global options:

>>> xray.set_options(display_width=80)
__init__(**kwargs)

Methods

__init__(**kwargs)