如何建立数据流挖掘的滑动窗口模型?
我们遇到的情况是,流(来自传感器的数据或服务器上的点击流数据)采用滑动窗口算法,我们必须将最后(例如)500 个数据样本存储在内存中。然后使用这些样本来创建直方图、聚合和统计。捕获有关输入数据流中的异常的信息。
请告诉我如何制作这样的滑动窗。
we have a situation that a stream (data from sensor or click stream data at server) is coming with sliding window algorithm we have to store the last (say) 500 samples of data in memory. These samples are then used to create histograms, aggregations & capture information about anomalies in the input data stream.
please tell me how to make such sliding window.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您询问如何以滑动窗口方式存储和维护这些值,请考虑这个简单的示例,该示例跟踪某些随机数据流的最后 10 个值的运行平均值:
更新
EraseMode=none 属性
在最近的版本中已被弃用并删除。使用
animatedline
函数代替类似的功能。If you are asking how to store and maintain these values in a sliding-window manner, consider this simple example which keep tracks of the running mean of the last 10 values of some random stream of data:
Update
The
EraseMode=none
property was deprecated and removed in recent versions. Use theanimatedline
function instead for a similar functionality.