You said
cnt_p_sr_first_action_ip_def_opp: Number of times the player faces a single raise as first action in position.
sum( if[ holdem_hand_player_statistics.flg_p_3bet_opp AND NOT(holdem_hand_player_statistics.flg_p_limp OR lookup_positions.flg_blinds), 1, 0])
This says
- You must have the opportunity to 3bet
- Or you didnt limp or you arent at the blinds
I this case will be counted the cases where you are at the blinds, and the case where you are not at the blinds and limped, because the first OR will be check and is not needed to check de second, and if the first is not checked and the second is it will be counted. OR one OR another, right? This is because if the player limped it will be counted in another stat and if the player is at the blinds because that situation we have the player out of position, and this is stats if for the player in position.
I think we should change this OR to AND because we want the cases where
- You must have the opportunity to 3bet
- You didnt limp
- You arent at the blinds
We dont want the cases where the players limped AND the player is at the blinds.
The same is for
cnt_p_sr_first_action_ip_def_action_raise: Number of times the player 3bets a single raise as first action in position.
sum( if[ holdem_hand_player_statistics.flg_p_3bet AND NOT(holdem_hand_player_statistics.flg_p_limp OR lookup_positions.flg_blinds), 1, 0])
Neither limped players nor blinds.
I know its saturday and you will probabily be answering from monday on, but Im tryng here to construct the other stats and I will wait for your answer to confirm that stats to follow asking for more doubs in the future stats. I think as we are correcting theese the future stas will be easier, because they're similar.