🍾 Xarray is now 10 years old! 🎉

xarray.IndexVariable.unstack

xarray.IndexVariable.unstack#

IndexVariable.unstack(dimensions=None, **dimensions_kwargs)[source]#

Unstack an existing dimension into multiple new dimensions.

New dimensions will be added at the end, and the order of the data along each new dimension will be in contiguous (C) order.

Note that unlike DataArray.unstack and Dataset.unstack, this method requires the existing dimension to contain the full product of the new dimensions.

Parameters:
  • dimensions (mapping of hashable to mapping of hashable to int) – Mapping of the form old_dim={dim1: size1, …} describing the names of existing dimensions, and the new dimensions and sizes that they map to.

  • **dimensions_kwargs – The keyword arguments form of dimensions. One of dimensions or dimensions_kwargs must be provided.

Returns:

unstacked (Variable) – Variable with the same attributes but unstacked data.