Return a new DataArray without encoding on the array or any attached coords.
(self)
| 962 | return self.drop_encoding() |
| 963 | |
| 964 | def drop_encoding(self) -> Self: |
| 965 | """Return a new DataArray without encoding on the array or any attached |
| 966 | coords.""" |
| 967 | ds = self._to_temp_dataset().drop_encoding() |
| 968 | return self._from_temp_dataset(ds) |
| 969 | |
| 970 | @property |
| 971 | def indexes(self) -> Indexes: |
no test coverage detected