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

Method as_numpy

xarray/namedarray/core.py:860–862  ·  view source on GitHub ↗

Coerces wrapped data into a numpy array, returning a Variable.

(self)

Source from the content-addressed store, hash-verified

858 return to_numpy(self._data)
859
860 def as_numpy(self) -> Self:
861 """Coerces wrapped data into a numpy array, returning a Variable."""
862 return self._replace(data=self.to_numpy())
863
864 def reduce(
865 self,

Callers

nothing calls this directly

Calls 2

_replaceMethod · 0.95
to_numpyMethod · 0.95

Tested by

no test coverage detected