- property tensorstore_demo.IndexDomain.labels: tuple[str, ...]
Dimension labels for each dimension.
Example
>>> domain = ts.IndexDomain(inclusive_min=[1, 2, 3], shape=[3, 4, 5]) >>> domain.labels ('', '', '') >>> domain = ts.IndexDomain(inclusive_min=[1, 2, 3], ... shape=[3, 4, 5], ... labels=['x', 'y', 'z']) >>> domain.labels ('x', 'y', 'z')
Last update:
Nov 16, 2024