Is there a way I can multiply each set of 12 data together eg. Prob for Match1 x Prob for Match2 x Prob Match3.
PosID TimeID MatchID WinID Prob
1 1 1 1 0.521739130434782
1 1 2 1 0.419754953864771
1 1 ..etc 1 0.427902390929258
1 1 12 1 0.461811324143505
2 1 1 1 0.521739130434782
2 1 2 1 0.419754953864771
2 1 ..etc 1 0.427902390929258
2 1 12 2 0.141259934443896
The end result would be something like if you used the aggregate function of sum, but instead I need to multiply.
PosID TimeID MatchID WinID Prob
1 1 1 1 0.521739130434782
1 1 2 1 0.419754953864771
1 1 ..etc 1 0.427902390929258
1 1 12 1 0.461811324143505
2 1 1 1 0.521739130434782
2 1 2 1 0.419754953864771
2 1 ..etc 1 0.427902390929258
2 1 12 2 0.141259934443896
The end result would be something like if you used the aggregate function of sum, but instead I need to multiply.