,默认对所有列的行索引
>> arr[::2]
array([[ 0.792411, 0.977073, 0.417421...-01 2000-01-03
* space (space) <U2 'IA' 'IL' 'IN'
# 对所有行的列索引
>> arr[:, ::2]
<xarray.DataArray (...除了利用标签索引提取数据之外,也可以进行赋值操作:
>> arr.loc['2000-01-01', ['IL', 'IN']] = np.random.rand(2)
>> arr
<xarray.DataArray...='<em>datetime64</em>[<em>ns</em>]', name='time', freq='D')
space: Int64Index([1, 2, 3], dtype='int64', name='space')...'datetime64[ns]', name='time', freq='D')
使用 get_index 可以获取维度索引。