I created new stats which shows the situation below, but I'm not sure my new stats are correct.
A Percentage that PlayerB folds PlayerA's turn bet after flop donk in case:A and case:B.
(case:A)
preflop:
PlayerA calls, PlayerB raises
flop:
PlayerA bets, PlayerB calls
turn:
PlayerA bets, PlayerB folds
(case:B)
preflop:
PlayerA calls, PlayerB raises
flop:
PlayerA bets, PlayerB raises, PlayerA calls
turn:
PlayerA bets, PlayerB folds
My new stats are brelow. Are those correct?
<my new stats>
*Fold to T Bet after F donk
(cnt_t_bet_after_F_donk_def_action_fold / cnt_t_bet_after_F_donk_def_opp) * 100
*cnt_t_bet_after_F_donk_def_action_fold
sum(if[holdem_hand_player_detail.amt_t_bet_facing > 0 AND (lookup_actions_t.action SIMILAR TO '(F|XF)%') AND lookup_actions_p.action LIKE '%R' and holdem_hand_player_detail.amt_f_bet_facing > 0 AND NOT(holdem_hand_player_detail.flg_f_open_opp), 1, 0])
*cnt_t_bet_after_F_donk_def_opp
sum(if[holdem_hand_player_detail.amt_t_bet_facing > 0 AND lookup_actions_p.action LIKE '%R' and holdem_hand_player_detail.amt_f_bet_facing > 0 AND NOT(holdem_hand_player_detail.flg_f_open_opp), 1, 0])