I have the following data:
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)]
fist column = OADate, 2nd = volume, third = price.
I now want to group by date, sum the volume and compute the weighted average price. This is what I have so far:
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))
I m getting a type mismatch that tuples have differing lengths. I have used similar syntax before without issues. Could anyone please point me in the right direction?
UPDATE:
In case somebody is interested the solution is: THANKS to Tomas and 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))