Page 1 of 1
Preflop raise
Posted:
Thu Jul 31, 2008 6:44 pm
by winneronline
Hi there guys. I have one simple question. I read the PT3 DB Schema and i d like to know how the preflop raise ( regardless the position of the player ) is calculated. There is the flg_p_first_raise which takes a value of true or false if a player raises first preflop. But shouldn't a stat exist to inform about the opportunities to raise first preflop? The division of those two would be the preflope raise.
Re: Preflop raise
Posted:
Fri Aug 01, 2008 4:51 am
by WhiteRider
I think this is what you're looking for?
holdem_hand_player_statistics.flg_p_open_opp
PFR is the % of times the player made any raise preflop out of all hands. This stat does not count opportunities since you ALWAYS have the chance to raise PF (unless the betting is capped or all-in before it gets to you).
EDIT: RFI (raise first in) takes account of opportunites to act first.
In fact, RFI is how often you raised when you acted first.
(cnt_p_first_raise / (cnt_p_first_raise + cnt_first_limp)) * 100
Re: Preflop raise
Posted:
Fri Aug 01, 2008 5:50 am
by winneronline
Thx mate. Your answer really helped.