🍾 Xarray is now 10 years old! 🎉

xarray.DataArray.from_series

xarray.DataArray.from_series#

classmethod DataArray.from_series(series, sparse=False)[source]#

Convert a pandas.Series into an xarray.DataArray.

If the series’s index is a MultiIndex, it will be expanded into a tensor product of one-dimensional coordinates (filling in missing values with NaN). Thus this operation should be the inverse of the to_series method.

Parameters:
  • series (Series) – Pandas Series object to convert.

  • sparse (bool, default: False) – If sparse=True, creates a sparse array instead of a dense NumPy array. Requires the pydata/sparse package.