File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -1385,8 +1385,9 @@ def transpose(self, *dims):
1385
1385
1386
1386
Notes
1387
1387
-----
1388
- Although this operation returns a view of this array's data, it is
1389
- not lazy -- the data will be fully loaded.
1388
+ This operation returns a view of this array's data. It is
1389
+ lazy for dask-backed DataArrays but not for numpy-backed DataArrays
1390
+ -- the data will be fully loaded.
1390
1391
1391
1392
See Also
1392
1393
--------
Original file line number Diff line number Diff line change @@ -2817,8 +2817,9 @@ def transpose(self, *dims):
2817
2817
2818
2818
Notes
2819
2819
-----
2820
- Although this operation returns a view of each array's data, it
2821
- is not lazy -- the data will be fully loaded into memory.
2820
+ This operation returns a view of each array's data. It is
2821
+ lazy for dask-backed DataArrays but not for numpy-backed DataArrays
2822
+ -- the data will be fully loaded into memory.
2822
2823
2823
2824
See Also
2824
2825
--------
Original file line number Diff line number Diff line change @@ -1133,8 +1133,8 @@ def transpose(self, *dims):
1133
1133
1134
1134
Notes
1135
1135
-----
1136
- Although this operation returns a view of this variable's data, it is
1137
- not lazy -- the data will be fully loaded .
1136
+ This operation returns a view of this variable's data. It is
1137
+ lazy for dask-backed Variables but not for numpy-backed Variables .
1138
1138
1139
1139
See Also
1140
1140
--------
You can’t perform that action at this time.
0 commit comments