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

Method data

xarray/namedarray/core.py:540–547  ·  view source on GitHub ↗

The NamedArray's data as an array. The underlying array type (e.g. dask, sparse, pint) is preserved.

(self)

Source from the content-addressed store, hash-verified

538
539 @property
540 def data(self) -> duckarray[Any, _DType_co]:
541 """
542 The NamedArray's data as an array. The underlying array type
543 (e.g. dask, sparse, pint) is preserved.
544
545 """
546
547 return self._data
548
549 @data.setter
550 def data(self, data: duckarray[Any, _DType_co]) -> None:

Callers

nothing calls this directly

Calls 1

_check_shapeMethod · 0.95

Tested by

no test coverage detected