Return a new Dataset without encoding on the dataset or any of its variables/coords.
(self)
| 472 | return self.drop_encoding() |
| 473 | |
| 474 | def drop_encoding(self) -> Self: |
| 475 | """Return a new Dataset without encoding on the dataset or any of its |
| 476 | variables/coords.""" |
| 477 | variables = {k: v.drop_encoding() for k, v in self.variables.items()} |
| 478 | return self._replace(variables=variables, encoding={}) |
| 479 | |
| 480 | @property |
| 481 | def dims(self) -> Frozen[Hashable, int]: |