xarray.DataArray.from_series

classmethod DataArray.from_series(series: pandas.core.series.Series, sparse: bool = False) → 'DataArray'

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.

If sparse=True, creates a sparse array instead of a dense NumPy array. Requires the pydata/sparse package.