如何在Python中计算数值趋势线

发布于 2024-11-09 02:53:45 字数 196 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

惟欲睡 2024-11-16 02:53:45

这不就是一个简单的导数吗?

def derivs(l):
  return [l[i + 1] - l[i] for i in range(len(l) - 1)]

Isn't that just a simple derivative?

def derivs(l):
  return [l[i + 1] - l[i] for i in range(len(l) - 1)]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文