xarray.DataArray.str.swapcase#
- DataArray.str.swapcase()[source]#
Convert strings in the array to be swapcased.
- Returns
swapcased (
same type as values
)
Examples
>>> import xarray as xr >>> da = xr.DataArray(["temperature", "PRESSURE", "HuMiDiTy"], dims="x") >>> da <xarray.DataArray (x: 3)> Size: 132B array(['temperature', 'PRESSURE', 'HuMiDiTy'], dtype='<U11') Dimensions without coordinates: x >>> swapcased = da.str.swapcase() >>> swapcased <xarray.DataArray (x: 3)> Size: 132B array(['TEMPERATURE', 'pressure', 'hUmIdItY'], dtype='<U11') Dimensions without coordinates: x