by kraada » Tue Apr 03, 2012 12:15 pm
The "3Bet vs IP" and "3Bet vs OOP" stats do not exist at this time and those would need to be made as custom stats.
You could build them using the following four column definitions (note: I assume you mean in position relative to the player who made the 2bet)
cnt_p_3bet_ip: sum(if[char_length(cash_hand_summary.str_aggressors_p) >= 2 and
cash_hand_player_statistics.flg_p_3bet and substring(cash_hand_summary.str_aggressors_p from 2 for 1):: int > cash_hand_player_statistics.position, 1, 0])
cnt_p_3bet_ip_opp:
sum(if[char_length(cash_hand_summary.str_aggressors_p) >= 2 and
cash_hand_player_statistics.flg_p_3bet_opp and substring(cash_hand_summary.str_aggressors_p from 2 for 1):: int > cash_hand_player_statistics.position, 1, 0])
and
cnt_p_3bet_oop: sum(if[char_length(cash_hand_summary.str_aggressors_p) >= 2 and
cash_hand_player_statistics.flg_p_3bet and substring(cash_hand_summary.str_aggressors_p from 2 for 1):: int < cash_hand_player_statistics.position, 1, 0])
cnt_p_3bet_oop_opp:
sum(if[char_length(cash_hand_summary.str_aggressors_p) >= 2 and
cash_hand_player_statistics.flg_p_3bet_opp and substring(cash_hand_summary.str_aggressors_p from 2 for 1):: int < cash_hand_player_statistics.position, 1, 0])
In all cases create these columns in the Cash Player section. Use the _opp version as the denominator in the fraction of the stat.
Once the stats are built, click Hud -> Edit Hud Profiles, then click on Positional Popups.
Create a New Group using said button on the left hand side. Since you only want EP, MP and CO, untick the other boxes in the Positions Setting area.
Click the Add Stat button at the lower left. Choose your new 3Bet vs IP stat and add it (giving it whatever label you want - e.g. 3b Vs IP), do the same for 3Bet vs OOP, then add the two default stats "3Bet vs BTN 2Bet" and "3Bet vs SB 2Bet" for your last two rows.