查找图中峰值的 x 值
我试图找到服务器负载较高的时间(高峰时间)。根据我所知道和读过的内容,我可以采用形状匹配来找到峰值,为此我可以使用神经网络等。
但这只会告诉我输入是否是峰值。我无法传递我每日服务器使用情况的图表并让它告诉我高峰时间。
请原谅我,如果这个问题太白痴了,但是相信我,我不知道如何做到这一点。我所有的研究都指向寻找峰值的方法,而我需要找到数据集中存在峰值的位置,并且可能存在多个这样的峰值。
I am trying to find the hours where my server load goes high (peak hours). As per what I know and have read, I can employ shape matching to find a peak, and for that I can use neural networks, etc.
But this will only tell me that the input is a peak or not. I wont be able to pass in a graph of my daily server usage and have it tell me the peak hours.
Pardon me, if the question is too idiotic, but trust me I have no leads on how this might be done. All my research is pointing to ways to find a peak, whereas I need to find where the peak exists in a data set, and there might be more than one such peaks too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,您有一个算法来检测高峰,但您不知道如何找到高峰时段。显而易见的想法是收集每小时的峰值速率并构建直方图。然后找到该直方图中的峰值。
或者我错过了什么?
So, you have an algorithm to detect peaks but you don't know how to find peak hours. The obvious idea is to collect peak rate per hour and build a histogram. Then find peaks in that histogram.
Or am I missing something?