Page 1 of 1

Stat F Fold sizing bets

PostPosted: Fri Feb 19, 2021 8:39 pm
by Huttydr
good evening could you confirm if I have created this stat well? is the Fold to F bet 33 or less??

(cnt_f_lessthan33pot_def_action_fold / cnt_f_lessthan33pot_def_opp)*100
column 1: (cnt_f_lessthan33pot_def_action_fold)
sum(if[cash_hand_player_statistics.val_f_bet_facing_pct <= 25 and
cash_hand_player_statistics.val_f_bet_facing_pct > 0 and cash_hand_player_statistics.cnt_f_call = 0 and cash_hand_player_statistics.cnt_f_raise = 0 and cash_hand_player_statistics.enum_folded = 'F', 1, 0])
column 2: (cnt_f_lessthan33pot_def_opp)
sum(if[cash_hand_player_statistics.val_f_bet_facing_pct <= 25 and
cash_hand_player_statistics.val_f_bet_facing_pct > 0, 1, 0])

Re: Stat F Fold sizing bets

PostPosted: Sun Feb 21, 2021 8:17 am
by Flag_Hippo
That's fine but the expressions can be shortened/simplified with the same results:

Code: Select all
sum(if[cash_hand_player_statistics.val_f_bet_facing_pct between 0.01 and 25 and lookup_actions_f.action SIMILAR TO '(F|XF)', 1, 0])

Re: Stat F Fold sizing bets

PostPosted: Sun Feb 21, 2021 8:22 am
by Huttydr
Thankss you!