gpt4 book ai didi

numpy - 如何使用自定义(非线性间隔)桶将 numpy 数组 "bin"?

转载 作者:行者123 更新时间:2023-12-01 14:21:56 24 4
gpt4 key购买 nike

如何在 numpy 中“装箱”波纹管数组,以便:

import numpy as np
bins = np.array([-0.1 , -0.07, -0.02, 0. , 0.02, 0.07, 0.1 ])
array = np.array([-0.21950869, -0.02854823, 0.22329239, -0.28073936, -0.15926265,
-0.43688216, 0.03600587, -0.05101109, -0.24318651, -0.06727875])

即将 array 中的每个 values 替换为以下内容:

-0.1 where `value` < -0.085
-0.07 where -0.085 <= `value` < -0.045
-0.02 where -0.045 <= `value` < -0.01
0.0 where -0.01 <= `value` < 0.01
0.02 where 0.01 <= `value` < 0.045
0.07 where 0.045 <= `value` < 0.085
0.1 where `value` >= 0.085

预期的输出是:

array = np.array([-0.1, -0.02,  0.1, -0.1, -0.1, -0.1,  0.02, -0.07, -0.1, -0.07])

我知道 numpy 有一个 digitize 函数,但是它返回 bin 的索引而不是 bin 本身。即:

np.digitize(array, bins)
np.array([0, 2, 7, 0, 0, 0, 5, 2, 0, 2])

最佳答案

通过对连续的 bin 值成对求平均值来获取这些中间值。然后,使用 np.searchsortednp.digitize 使用中间值获取索引。最后,索引到 bins 以获取输出。

中间值:

mid_bins = (bins[1:] + bins[:-1])/2.0

使用 searchsorteddigitze 的索引:

idx = np.searchsorted(mid_bins, array)
idx = np.digitize(array, mid_bins)

输出:

out = bins[idx]

关于numpy - 如何使用自定义(非线性间隔)桶将 numpy 数组 "bin"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46216690/

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