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

Method real

xarray/core/dataset.py:8685–8693  ·  view source on GitHub ↗

The real part of each data variable. See Also -------- numpy.ndarray.real

(self)

Source from the content-addressed store, hash-verified

8683
8684 @property
8685 def real(self) -> Self:
8686 """
8687 The real part of each data variable.
8688
8689 See Also
8690 --------
8691 numpy.ndarray.real
8692 """
8693 return self.map(lambda x: x.real, keep_attrs=True)
8694
8695 @property
8696 def imag(self) -> Self:

Callers

nothing calls this directly

Calls 1

mapMethod · 0.95

Tested by

no test coverage detected