摘要: 1.均方差异常检测算法 2.Z-scores算法 def Z_Score(data): lenth = len(data) total = sum(data) ave = float(total)/lenth tempsum = sum([pow(data[i] - ave,2) for i in 阅读全文
posted @ 2022-07-13 21:33 zhangdudu 阅读(42) 评论(0) 推荐(0)