🍾 Xarray is now 10 years old! 🎉

xarray.DataArray.str.translate

xarray.DataArray.str.translate#

DataArray.str.translate(table)[source]#

Map characters of each string through the given mapping table.

Parameters:

table (dict-like from and to str or bytes or int) – A a mapping of Unicode ordinals to Unicode ordinals, strings, int or None. Unmapped characters are left untouched. Characters mapped to None are deleted. str.maketrans() is a helper function for making translation tables.

Returns:

translated (same type as values)