gpt4 book ai didi

检测我的数字异常增长/下降的算法

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

我有一个数据集,其中包含过去 30 天内访问过我网站页面的访问者编号,它看起来像这样:

Page 1: [1,2,66,2,2,7,8]
Page 2: [3,5,8,3,7,11,45]

页面总量巨大。我想应用一种算法来检测在此期间突然增长、激增或下降的页面。有没有一种算法可以让我做到这一点?

最佳答案

int Q = 20;     //Q should be the difference 
//between two pages that should be
//considered a spike

for (int i = 0; i < pages.length; i++){
page p = pages[i];
for (int j = 0; j < p.visitors.length - 1; j++){
if(p.visitors[j] >= p.visitors[j+1] + Q){
print("Page " + i + " has spike in day " + j);
}
else if(p.visitors[j] + Q <= p.visitors[j+1] + Q){
print("Page " + i + " has spike in day " + (j+1));
}
}
}

关于检测我的数字异常增长/下降的算法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51425421/

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