I am trying to create a 3w BB v SB adj BB/100 stat for spin & go.
I created amt_expected_bb_won__3w_BB_v_SB column:
- Code: Select all
sum(if[tourney_hand_summary.cnt_players = 3 AND tourney_hand_player_statistics.position=8 AND NOT tourney_hand_player_statistics.val_p_raise_aggressor_pos=0 AND tourney_hand_player_statistics.cnt_p_face_limpers <= 1, 1, 0])
and cnt_p_3w_bb_v_sb:
- Code: Select all
sum(if[tourney_hand_summary.cnt_players = 3 AND tourney_hand_player_statistics.position=8 AND NOT tourney_hand_player_statistics.val_p_raise_aggressor_pos=0 AND tourney_hand_player_statistics.cnt_p_face_limpers <= 1, 1, 0])
My final stat is:
- Code: Select all
amt_expected_bb_won__3w_BB_v_SB / (cnt_p_3w_bb_v_sb / 100)
I am getting a result, but it does not match with the number i get if using tournaments filters instead which is:
Players Dealt Into Hand Between 3 and 3
AND
NOT(Position of First Raiser Position of selected Exaclty 0)
AND
Number of Limpers Between 0 and 1
