groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)
本文介绍了在xarray中按单个维度的多个坐标分组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个沿一维具有多个坐标的xarray。在下面的示例中,坐标a
和b
是沿着维度dim1
定义的。我如何groupby
使用沿相同维度定义的两个坐标?与this question不同,我不是尝试沿着不同的维度分组,而是沿着单个维度进行分组。
import xarray as xr
d = xr.DataArray([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]],
coords={
'a': ('dim1',['A', 'A', 'B', 'B']),
'b': ('dim1',['1', '2', '1', '2']),
'c': ('dim2',['x', 'y', 'z'])
},
dims=['dim1', 'dim2'])
d.groupby(['a','b']) # this gives: TypeError: `group` must be an xarray.DataArray or the name of an xarray variable or dimension
推荐答案
这是我当前的解决方法:
import numpy as np
import xarray as xr
def groupby_multicoords(da, fields):
common_dim = da.coords[fields[0]].dims[0]
tups_arr = np.empty(len(da[common_dim]), dtype=object)
tups_arr[:] = list(zip(*(da[f].values for f in fields)))
return da.assign_coords(grouping_zip=xr.DataArray(tups_arr, dims=common_dim)).groupby('grouping_zip')
然后groupby_multicoords(da=d, fields=['a', 'b'])
d.groupby(['a','b'])
..,我将不胜感激
这篇关于在xarray中按单个维度的多个坐标分组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:在xarray中按单个维度的多个坐标分组


基础教程推荐
猜你喜欢
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01