how do i make in or out position stats now?
example 3bet in pos? or out? i dont see anymore _opp_opp in collms
Moderator: Moderators
Beck wrote:But as far as I can see that leaves out when CO is raising and BTN reraises, correct?
Raising 1 pos from the btn is always considered a steal attempt, right? So in a 4-handed game an UTG raise is a steal attempt?
However, I'm not quite sure how to construct it. How do I incorporate the "if-line" you wrote in to the 3 bet-stat? I put it in as an additional condition, and thats it? And for the out of position stat, I just turn around the "<" ??
WhiteRider wrote:Beck wrote:But as far as I can see that leaves out when CO is raising and BTN reraises, correct?
This is not a blind steal by the button, and the blinds do not face a steal.
It is a blind steal [attempt] by the cutoff, though.
WhiteRider wrote:You include the expression part of the IF statement inside the existing IF statement.
So take "holdem_hand_player_statistics.position < holdem_hand_player_detail.val_p_raise_aggressor_pos" from kraada's expression and insert it into the expression of the stat you're editting (with an AND).
So you will end up with something like:
SUM ( if [ existingExpression AND holdem_hand_player_statistics.position < holdem_hand_player_detail.val_p_raise_aggressor_pos, 1, 0 ] )
Have a look at the Custom Statistics and Reports FAQ which explains the construction of stats.
Beck wrote:No, I get that. But in what stat is buttons 3-bet then included?
(cnt_p_3bet_def_action_fold_ip / cnt_p_3bet_def_opp_ip) * 100
sum(if[holdem_hand_player_statistics.enum_p_3bet_action='F'
AND holdem_hand_player_statistics.position < holdem_hand_player_detail.val_p_raise_aggressor_pos, 1, 0])
sum(if[holdem_hand_player_statistics.flg_p_3bet_def_opp
AND holdem_hand_player_statistics.position < holdem_hand_player_detail.val_p_raise_aggressor_pos
, 1, 0])
(cnt_p_3bet_def_action_fold_op / cnt_p_3bet_def_opp_op) * 100
sum(if[holdem_hand_player_statistics.enum_p_3bet_action='F'
AND holdem_hand_player_statistics.position > holdem_hand_player_detail.val_p_raise_aggressor_pos, 1, 0])
sum(if[holdem_hand_player_statistics.flg_p_3bet_def_opp
AND holdem_hand_player_statistics.position > holdem_hand_player_detail.val_p_raise_aggressor_pos
, 1, 0])
Beck wrote:I assume that the "facing a 3 bet" columns indicate only the preflop aggressor?
What if Player A raise, Player B calls, and player C reraises, is Player B then facing a 3 bet? Or if Player A raise, player B reraise, is player C then facing a 3-bet?
I tried to find the definition for these stats, but no luck (maybe just looked in the wrong place?)
Return to Custom Stats, Reports, and SQL [Read Only]
Users browsing this forum: No registered users and 15 guests