gpt4 book ai didi

python-xarray - 在时间维度中对 xarray 数据集或数据数组进行子集化

转载 作者:行者123 更新时间:2023-12-03 20:29:45 26 4
gpt4 key购买 nike

我正在尝试计算 xarray 数据集中时间维度子集的每月气候。时间是使用 datetime64 定义的。

如果我想使用整个时间序列,这很好用:

monthly_avr=ds_clm.groupby('time.month').mean(dim='time')

但我真的只想要比 2001 年大的年份。这些都不起作用:
monthly_avr2=ds_clm.where(ds_clm.time>'2001-01-01').groupby('time.month').mean('time')
monthly_avr3=ds_clm.isel(time=slice('2001-01-01', '2018-01-01')).groupby('time.month').mean('time')

这是我的数据集的样子:
<xarray.Dataset>
Dimensions: (hist_interval: 2, lat: 192, lon: 288, time: 1980)
Coordinates:
* lon (lon) float32 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 ...
* lat (lat) float32 -90.0 -89.057594 -88.11518 -87.172775 ...
* time (time) datetime64[ns] 1850-01-31 1850-02-28 1850-03-31 ...
Dimensions without coordinates: hist_interval
Data variables:
EFLX_LH_TOT (time, lat, lon) float32 0.26219246 0.26219246 0.26219246 ...

有谁知道使用 datetime64 进行时间子集化的正确语法?

最佳答案

通过坐标值索引和选择 xarray 中的数据通常使用 sel() 完成。方法。在您的情况下,类似于以下示例的内容应该可以工作。

monthly_avr3 = ds_clm.sel(
time=slice('2001-01-01', '2018-01-01')).groupby('time.month').mean('time')

使用 where()方法有时也很有用,但对于您的用例,您还需要添加 drop=True选项:
monthly_avr2 = ds_clm.where(
ds_clm['time.year'] > 2000, drop=True).groupby('time.month').mean('time')

关于python-xarray - 在时间维度中对 xarray 数据集或数据数组进行子集化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51976126/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com