gpt4 book ai didi

python - numpy 数组中的反向计数

转载 作者:太空狗 更新时间:2023-10-30 01:52:39 24 4
gpt4 key购买 nike

假设我有一系列整数值排列在像这样的 numpy 数组中。

nan = np.nan
arr = np.array([3, nan, nan, nan, 5, nan, nan, nan, nan, nan])

nan 值应该用从第一个非空值到零的反向计数填充。

[3, 2, 1, 0, 5, 4, 3, 2, 1, 0]

最佳答案

IMO,最简单的 pandas 方法是使用 groupbycumcount 以及 ascending=False:

s = pd.Series(np.cumsum(~np.isnan(arr)))
s.groupby(s).cumcount(ascending=False)

0 3
1 2
2 1
3 0
4 5
5 4
6 3
7 2
8 1
9 0
dtype: int64

关于python - numpy 数组中的反向计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56329112/

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