python - 对于 Python 用户来说,是否有类似于 AnomalyDetection (R) 的东西?

标签 python r time-series statsmodels

使用this package可以很容易地检测时间序列中的异常情况。 (只有一行代码):

res = AnomalyDetectionTs(raw_data, max_anoms=0.02, direction='both', plot=TRUE)

我想知道Python是否有类似的东西。我在statsmodel中找不到任何相当简单的东西:http://statsmodels.sourceforge.net/devel/tsa.html

最佳答案

感谢您的关注,我们目前没有 AnomalyDetection 软件包的 Python 版本,不过您可能可以使用 Rpy2 来获取它:http://rpy.sourceforge.net/

最好,

关于python - 对于 Python 用户来说,是否有类似于 AnomalyDetection (R) 的东西?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28029708/

相关文章:

python - 使用 .loc 选择 DatetimeIndex 行范围(Pandas Python 3)

python - 检查 list1 是否在 list2 内后返回输出

R:给日期加上 1 个月

r - 列名在 read.table 或 read.csv 上向左移动

r - 如何检查Hadoop集群上是否安装了R client?

python - 时间戳分析 Pandas

python - Python 中 R 的预测包

python - 如何在 Django 应用程序中安装翻译 ".po"?

python - Python time.sleep() 的上限?

python - Cython:包装一个将自身的不同实例作为输入的 C++ 类