MCPcopy Index your code
hub / github.com/pydata/xarray / variables

Method variables

xarray/core/coordinates.py:919–922  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

917
918 @property
919 def variables(self) -> Mapping[Hashable, Variable]:
920 return Frozen(
921 {k: v for k, v in self._data.variables.items() if k in self._names}
922 )
923
924 def __getitem__(self, key: Hashable) -> DataArray:
925 if key in self._data.data_vars:

Callers

nothing calls this directly

Calls 2

FrozenClass · 0.90
itemsMethod · 0.80

Tested by

no test coverage detected