- tensorstore.d[selection: DimSelectionLike] d
Constructs from a sequence of dimension indices, ranges, and/or labels.
Examples
>>> ts.d[0, 1, 2] d[0,1,2] >>> ts.d[0:1, 2, "x"] d[0:1,2,'x'] >>> ts.d[[0, 1], [2]] d[0,1,2] >>> ts.d[[0, 1], ts.d[2, 3]] d[0,1,2,3]