by beast9881 » Fri Nov 01, 2013 7:46 am
Now I have built some more stats can you tell me if they are correct? I think thea are but I am not sure!
1. 3Bet vs BTN Steal: cnt_steal_d_action_raise_vs_BU / cnt_steal_def_opp_vs_bu) * 100
column1: sum(if[lookup_actions_p.action = 'R' and cash_hand_summary.str_aggressors_p LIKE '80%' and cash_hand_summary.str_actors_p LIKE '0%' and cash_hand_player_statistics.flg_blind_def_opp, 1, 0])
column2: sum(if[cash_hand_player_statistics.flg_blind_def_opp and cash_hand_summary.str_aggressors_p LIKE '80%' and cash_hand_summary.str_actors_p LIKE '0%' and cash_hand_player_statistics.flg_blind_def_opp, 1, 0])
2. 3Bet vs CO Steal: (cnt_steal_def_action_raise_vs_CO / cnt_steal_def_opp_vs_co) * 100
sum(if[lookup_actions_p.action = 'R' and cash_hand_summary.str_aggressors_p LIKE '81%' and cash_hand_summary.str_actors_p LIKE '1%' and cash_hand_player_statistics.flg_blind_def_opp, 1, 0])
sum(if[cash_hand_player_statistics.flg_blind_def_opp and cash_hand_summary.str_aggressors_p LIKE '81%' and cash_hand_summary.str_actors_p LIKE '1%' and cash_hand_player_statistics.flg_blind_def_opp, 1, 0])
3. Call vs BTN Steal: (cnt_steal_def_action_call_vs_BU / cnt_steal_def_opp_vs_bu) * 100
sum(if[lookup_actions_p.action = 'C' and cash_hand_summary.str_aggressors_p LIKE '80%' and cash_hand_summary.str_actors_p LIKE '0%' and cash_hand_player_statistics.flg_blind_def_opp, 1, 0])
sum(if[cash_hand_player_statistics.flg_blind_def_opp and cash_hand_summary.str_aggressors_p LIKE '80%' and cash_hand_summary.str_actors_p LIKE '0%' and cash_hand_player_statistics.flg_blind_def_opp, 1, 0])
4. Call vs CO Steal: (cnt_steal_def_action_call_vs_CO / cnt_steal_def_opp_vs_co) * 100
sum(if[lookup_actions_p.action = 'C' and cash_hand_summary.str_aggressors_p LIKE '81%' and cash_hand_summary.str_actors_p LIKE '1%' and cash_hand_player_statistics.flg_blind_def_opp, 1, 0])
sum(if[cash_hand_player_statistics.flg_blind_def_opp and cash_hand_summary.str_aggressors_p LIKE '81%' and cash_hand_summary.str_actors_p LIKE '1%' and cash_hand_player_statistics.flg_blind_def_opp, 1, 0])
for what does the 'R' stand a 3Bet or a 3Bet+ ?