Gae80 wrote:Here are the expressions used in the columns for this stat:
sum(if[tourney_hand_player_statistics.flg_p_3bet_opp and tourney_hand_player_statistics.flg_p_fold, 1, 0])
sum(if[tourney_hand_player_statistics.flg_p_3bet_opp, 1, 0])
There is nothing in these expressions that's specific to the player facing a raise first in. Also
tourney_hand_player_statistics.flg_p_fold isn't suitable as the player could 3bet and fold to further action. I would recommend starting by duplicating the following columns instead:
cnt_p_2bet_def_action_fold
cnt_p_2bet_def_oppThat will give you a statistic for how often a player folded to a 2Bet (first raise) preflop. You can edit those columns for folding vs a raise first in by specifying that there were no limpers:
- Code: Select all
char_length(tourney_hand_summary.str_aggressors_p) >= 2 and char_length(tourney_hand_summary.str_actors_p) >= 2 and substring(tourney_hand_summary.str_aggressors_p from 2 for 1) ::int = substring(tourney_hand_summary.str_actors_p from 1 for 1) ::int
and if you do not want callers in-between you'll also need to test for not having a squeeze opportunity:
- Code: Select all
NOT tourney_hand_player_statistics.flg_p_squeeze_opp
Gae80 wrote:Here's below the screenshot of the columns section: I would like to ask you: is it normal that when I look at the Columns tab, I see the formula sum(tourney_summary.amt_addon * tourney_results.cnt_addon) in the Expression box, rather than seeing both columns combined there?
I am not sure what you are asking but
amt_addon is the column. Columns cannot be referenced in column expressions.
tourney_summary.amt_addon and
tourney_results.cnt_addon are a part of the database schema and are not columns.