Page 1 of 1

RFI stats based on stacksizes messed up?

PostPosted: Mon Nov 26, 2018 3:39 pm
by 8Texman9
hey

i've got some raise first in stats based on different stacksizes but i think there is a mistake in their code because in the actual ingame hud these thats are kind of messed up and incorrect.

here an example:

https://imgur.com/a/SXNvGOY

- RFI(17-25) - Total: 32 (6/19) ??? overall there are only 6 opportunities given and not 19?
- RFI(17-25) - EP: 150 (3/2) ??? must be a mistake right?
- RFI(51+) - Total: 29 (7/24) ??? if i count all the positions together i get 10/24

so do i miss something or read the numbers wrongly? there are "mistakes" like that in every hud on my tables.

here is my code for RFI(17-25) (non allin)

(cnt_p_raise_first_in_17_25bb_NAI / cnt_p_open_opp_17_25_NAI ) * 100

cnt_p_raise_first_in_17_25bb_NAI:
Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_first_raise AND tourney_hand_player_statistics.flg_p_open_opp AND (tourney_hand_player_statistics.amt_before / tourney_blinds.amt_bb)<=25 AND (tourney_hand_player_statistics.amt_before / tourney_blinds.amt_bb)>16 AND tourney_hand_player_statistics.amt_p_raise_made <= 3 * tourney_blinds.amt_bb, 1, 0])


cnt_p_open_opp_17_25_NAI:
Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_open_opp AND (tourney_hand_player_statistics.amt_before / tourney_blinds.amt_bb)<=25 AND (tourney_hand_player_statistics.amt_before / tourney_blinds.amt_bb)>16 AND  tourney_hand_player_statistics.amt_p_raise_made <= 3 * tourney_blinds.amt_bb, 1, 0])


for bigger stacksizes its almost the same except the "AND tourney_hand_player_statistics.amt_p_raise_made <= 3 * tourney_blinds.amt_bb" part (which i should change as well i think, ive seen some better expressions in the open shoving thread below)

would appreciate your thoughts. i will now try to create new stats with cleaner expressions, but maybe you guys just know where the problem is ;)

Re: RFI stats based on stacksizes messed up?

PostPosted: Mon Nov 26, 2018 8:29 pm
by 8Texman9
fixed it on my own :D