from_series
- classmethod UnitsAwareDataArray.from_series(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. - 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. 
 
 - See also - DataArray.to_series,- Dataset.from_dataframe