Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在时间序列中,我们可以找到峰值(最小值和最大值)。有一些算法可以找到峰值。我的问题是:
在 python 中是否有用于时间序列数据中峰值检测的库?或者在 R 中使用 RPy 的东西?
计算样本点的推导,例如每 5 个点(阈值!)使用最小二乘法计算五个点的斜率(如果您不知道它是什么,请在 wiki 上搜索。任何线性回归函数都使用它)。当这个斜率几乎(阈值!)为零时,就会出现一个峰值。