我有以下数据:
let data = [(41609.00 , 10000., 3.822); (41609.00, 60000., 3.857); (41974.00 , 20000., 4.723 ); (41974.00, 30000., 3.22 ); (41974.00 , 4000., 4.655 ); (42339.00, 7000., 4.22 ); (42339.00 , 5000., 3.33)]
第一列 = OADate,第二列 = 交易量,第三列 = 价格。
我现在想按日期分组,对交易量求和并计算加权平均价格。这是我到目前为止所拥有的:
let aggr data =
data
//Multiply second and third column element by element
|> Seq.map (fun (a, b, c) -> (a, b, b * c))
//Group by first column
|> Seq.groupBy fst
//Sum column 2 & 3 based on group of column 1
|> Seq.map (fun (d, e, f) -> (d, e |> Seq.sum, f |> Seq.sum))
//take the sum and grouped column 1 & 2 and compute weighted average of the third
|> Seq.map (fun (g, h, i) -> (g, h, i/h))
我得到了元组长度不同的类型不匹配。我以前使用过类似的语法没有问题。谁能指出我正确的方向?
更新:
如果有人感兴趣,解决方案是:感谢 Tomas 和 Leaf
let aggr data =
data
|> Seq.map (fun (a, b, c) -> (a, b, b * c))
|> Seq.groupBy (fun (a, b, c) -> a)
|> Seq.map (fun (key, group) -> group |> Seq.reduce (fun (a, b, c) (x, y, z) -> a, b+y , c+z))
|> Seq.map (fun (g, h, i) -> (g, h, i/h))