Dictionary of DataArray objects corresponding to data variables
(self)
| 1508 | |
| 1509 | @property |
| 1510 | def data_vars(self) -> DataVariables: |
| 1511 | """Dictionary of DataArray objects corresponding to data variables""" |
| 1512 | return DataVariables(self.to_dataset()) |
| 1513 | |
| 1514 | def isomorphic(self, other: DataTree) -> bool: |
| 1515 | """ |
nothing calls this directly
no test coverage detected