gpt4 book ai didi

python-3.x - 如何根据数组的密度对数组进行二次采样? (去除频繁值,保留稀有值)

转载 作者:行者123 更新时间:2023-12-05 00:59:28 25 4
gpt4 key购买 nike

我有一个问题,我想绘制一个数据分布,其中一些值经常出现,而另一些则非常罕见。总点数约为 30.000。渲染像 png 或(上帝保佑)pdf 这样的图需要很长时间,而且 pdf 太大而无法显示。

所以我想只为地 block 对数据进行二次抽样。我想要实现的是删除很多重叠的点(密度高的地方),但保留密度低的点,概率几乎为 1。

现在,numpy.random.choice 允许人们指定一个概率向量,我根据数据直方图进行了一些调整。但我似乎无法做出选择,以便真正保留稀有点。

我附上了一张数据图片;分布的右尾的点要少几个数量级,所以我想保留这些点。数据是 3d 的,但密度仅来自一维,所以我可以用它来衡量给定位置有多少点

enter image description here

最佳答案

考虑以下函数。它将沿轴将数据分箱,并

  • 如果垃圾箱中有一个或两个点,则接管这些点,
  • 如果 bin 中有更多点,则取最小值和最大值。
  • 附加第一个点和最后一个点以确保使用相同的数据范围。

这允许将原始数据保留在低密度区域,但显着减少要在高密度区域绘制的数据量。同时通过足够密集的分箱保留所有特征。

import numpy as np; np.random.seed(42)

def filt(x,y, bins):
d = np.digitize(x, bins)
xfilt = []
yfilt = []
for i in np.unique(d):
xi = x[d == i]
yi = y[d == i]
if len(xi) <= 2:
xfilt.extend(list(xi))
yfilt.extend(list(yi))
else:
xfilt.extend([xi[np.argmax(yi)], xi[np.argmin(yi)]])
yfilt.extend([yi.max(), yi.min()])
# prepend/append first/last point if necessary
if x[0] != xfilt[0]:
xfilt = [x[0]] + xfilt
yfilt = [y[0]] + yfilt
if x[-1] != xfilt[-1]:
xfilt.append(x[-1])
yfilt.append(y[-1])
sort = np.argsort(xfilt)
return np.array(xfilt)[sort], np.array(yfilt)[sort]

为了说明这个概念,让我们使用一些玩具数据

x = np.array([1,2,3,4, 6,7,8,9, 11,14, 17, 26,28,29])
y = np.array([4,2,5,3, 7,3,5,5, 2, 4, 5, 2,5,3])
bins = np.linspace(0,30,7)

然后调用 xf, yf = filt(x,y,bins) 并绘制原始数据和过滤后的数据给出:

enter image description here

具有大约 30000 个数据点的问题的用例如下所示。使用所提出的技术将允许将绘制点的数量从 30000 减少到大约 500。这个数字当然取决于使用的分箱 - 这里是 300 个分箱。在这种情况下,该函数需要大约 10 毫秒来计算。这不是超快,但与绘制所有点相比仍然是一个很大的改进。

import matplotlib.pyplot as plt

# Generate some data
x = np.sort(np.random.rayleigh(3, size=30000))
y = np.cumsum(np.random.randn(len(x)))+250
# Decide for a number of bins
bins = np.linspace(x.min(),x.max(),301)
# Filter data
xf, yf = filt(x,y,bins)

# Plot results
fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, figsize=(7,8),
gridspec_kw=dict(height_ratios=[1,2,2]))

ax1.hist(x, bins=bins)
ax1.set_yscale("log")
ax1.set_yticks([1,10,100,1000])

ax2.plot(x,y, linewidth=1, label="original data, {} points".format(len(x)))

ax3.plot(xf, yf, linewidth=1, label="binned min/max, {} points".format(len(xf)))

for ax in [ax2, ax3]:
ax.legend()
plt.show()

enter image description here

关于python-3.x - 如何根据数组的密度对数组进行二次采样? (去除频繁值,保留稀有值),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53543782/

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