Esper提供线性回归函数[stat:linest(,)]。
示例看起来像(这很有用):
select * from StockTickEvent.win:time(10 seconds).stat:linest(price, offer)
但是,我试图对符号(例如,INTC)分组的窗口中的所有数据进行线性回归,并且它不允许我。我尝试使用“having symbol ='GE'”,这也不对。这是我试图做的事情:
select * from StockTickEvent.win:time(10 seconds).stat:linest(current_timestamp(), price) group by symbol
感谢您解决此问题的任何帮助。
答案 0 :(得分:0)
对于数据窗口的分组,“std:groupwin”是正确的方法。