by kraada » Mon May 03, 2010 9:12 am
For the check/fold flop after calling a PFR in the BB, add two new columns:
cnt_f_face_bet_after_defending: sum(if[holdem_hand_player_statistics.flg_blind_def_opp and not(holdem_hand_player_statistics.cnt_p_raise > 0) and lookup_actions_f.action LIKE "X_%", 1, 0])
cnt_f_check_fold_after_defending: sum(if[holdem_hand_player_statistics.flg_blind_def_opp and not(holdem_hand_player_statistics.cnt_p_raise > 0) and lookup_actions_f.action = "XF", 1, 0])
Put the latter over the former and multiply by 100 to get your stat.
For check/call flop, check/fold turn use these:
cnt_t_face_bet_after_defending_and_xc_flop: sum(if[holdem_hand_player_statistics.flg_blind_def_opp and not(holdem_hand_player_statistics.cnt_p_raise > 0) and lookup_actions_f.action = "XC" and lookup_actions_t_.action LIKE "X_%", 1, 0])
cnt_t_check_fold_after_defending_and_xc_flop: sum(if[holdem_hand_player_statistics.flg_blind_def_opp and not(holdem_hand_player_statistics.cnt_p_raise > 0) and lookup_actions_f.action = "XC" and lookup_actions_t.action = "XF", 1, 0])