gpt4 book ai didi

algorithm - 如何证明实验数据服从重尾分布?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:03:59 24 4
gpt4 key购买 nike

我有几个服务器响应延迟的测试结果。根据我们的理论分析,延迟分布应该具有重尾行为。但是如何证明测试结果服从重尾分布呢?

最佳答案

我认为最直接的方法是对半正态分布进行最佳拟合,看看它对尾部的描述有多好。在 Python 中,您可以借助 scipy.stats.halfnorm.fit() 或使用专用于绘制和分析重尾 (https://github.com/Mottl/longtail) 的 longtail 模块来完成此操作:

import numpy as np
import longtail

# generate random values from heavy tailed distribution (let's take Laplace)
X = np.random.laplace(size=10000)
X = X[X>0] # take only right half of the distribution

# get best fit of half normal distribution to our data:
params = longtail.fit_distributions(X, distributions=['halfnorm'])

# visualize X and best fit:
longtail.plot(X, params=params)

由于尾​​部的点高于半正态近似,给定的分布可以被认为具有比半正态重的尾部:

enter image description here
enter image description here

关于algorithm - 如何证明实验数据服从重尾分布?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9570630/

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