The NamedArray's data as an array. The underlying array type (e.g. dask, sparse, pint) is preserved.
(self)
| 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: |
nothing calls this directly
no test coverage detected