如何在Python中计算数值趋势线
我在 python 2.6 中有一个监控应用程序,它计算队列(queue_len)中的条目数。我想创建一个简单的函数,可以使用这些queue_len随时间变化的值并从中提取趋势。
目标是根据一段时间内的 +ive 或 -ive 趋势而不是触发器来启动或关闭队列处理节点。
金融领域的 MACD 看起来有点像我需要的,或者是吗?在这里寻求任何帮助。
I have a monitoring application in python 2.6 that calculates the number of entries in a queue (queue_len). I want to create a simple function that can use these queue_len rate of change values over time and extract a trend from them.
The goal is to start up or shut down queue processing nodes depending of the +ive or -ive trend over time and not flip flop.
MACD from the financial arena looks sort of what I need or does it? Looking for any help here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不就是一个简单的导数吗?
Isn't that just a simple derivative?