Moderator: Moderators
WhiteRider wrote:No, you will need to use the content of the RFI columns, not the value of the column itself.
I was sure I'd posted this somewhere, but I can't find it now..
Ah, there it is:
viewtopic.php?f=19&t=1559&p=55010&hilit=cnt_p_raise_first_in#p55010
I'll link that thread back here too.
You would need to do this:
cnt_p_raise_first_in_p0 =
sum( if[holdem_hand_player_statistics.flg_p_first_raise AND holdem_hand_player_statistics.flg_p_open_opp AND holdem_hand_player_statistics.position = 0, 1, 0])
Do the same for the cnt_p_open_opp column.
WhiteRider wrote:RFI *is* raised first in, but the way to count instances of that happening is to count how often you made the first raise (note, not first action, there could have been a call before you) and you had the opportunity to open the action (i.e. there were no calls before you).
If you leave out the open_opp check, it would count hands where you made the first raise including those with limpers.
cnt_p_open_opp is a Column in the same section 'holdem cash player statistics' which is used to count the opportunities a player has to open the pot. Pretty straightforward.
= sum(if[holdem_hand_player_statistics.flg_p_open_opp, 1, 0])
cnt_p_raise_first_in_p0 =
sum( if[holdem_hand_player_statistics.flg_p_first_raise AND holdem_hand_player_statistics.flg_p_open_opp AND holdem_hand_player_statistics.position = 0, 1, 0])/sum( if[holdem_hand_player_statistics.flg_p_open_opp AND holdem_hand_player_statistics.position = 0, 1, 0])Return to Custom Stats, Reports, and SQL [Read Only]
Users browsing this forum: No registered users and 2 guests