`print_data` does not show metadata
In datatransformation, the new implementation of print_data
does not show metadata, for instance that of xr.DataArrays. There should be an option to include metadata.
The current implementation (print(f"{data}")
) returns array object:
[[0.98076046 .. 0.9758868 ]]
however, xr.DataArrays often contain more information:
print(data)
<xarray.DataArray 'area' (time: 4, ids: 64)>
array([[0.98076046, .. 0.9758868 ]], dtype=float32)
Coordinates:
case <U3 'HIT'
differentiation <U6 'domain'
* time (time) int64 0 1 2 3
property <U23 'area'
* ids (ids) object MultiIndex
* seed (ids) int64 0 0 0 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 0 0 0
* id (ids) uint64 48 49 50 51 52 53 ... 106 107 108 109 110 111