zedjr wrote:OK i imported stat. I see under stat tab is where i see entrie sfor this. DOnt understadn then what is use of column tab.
I'll come back to this in a bit..
ANyways am looking at stat "6max pfr from button". First question is. IS this an actual usable stat at this point as i see no column entries.
Yes, once you have imported that stat, you can add it to reports which show player statistics (like the Known Starting Hands Summary) or to the HUD (you will have to restart the HUD to get it to show up).
am jsut a little confused by columns tab and stat tab.
The Statistics tab is where you define the actual statistics that will be used in the HUD or reports.
Statistics are built up from Columns. So the value expression you mention
(PFR_Button_Numerator / VPIP_button_denominator) * 100
..is built from 2 columns "PFR_Button_Numerator" and "VPIP_button_denominator".
If you click the Columns tab you will find these columns in blue in the list (it's sorted alphabetically).
The Columns are built up from database fields, so are a kind-of halfway step between the DB and your Stats.
e.g. PFR_Button_Numerator =
SUM(if[holdem_hand_player_statistics.cnt_p_raise > 0 AND holdem_hand_player_statistics.position = 0,1,0])
This counts how often the player raises (cnt_p_raise>0, so they raised at least once preflop) and they were on the button (position=0, 0 seats off the button).
holdem_hand_player_statistics.cnt_p_raise
and
holdem_hand_player_statistics.position
are fields in the database - you can explore the database fields by clicking 'insert' on the Columns tab.
Ok next on this stat where is the part saying this is for 6 max. How can i make this a stat for nine handed full ring.
There is nothing here that defines it as 6-max, I think the creator just defined them for positions possible on a 6 seat table.
Also how can i make this a stat for utg. also what would i change and how if u know to make this a stat for button and co seat. this is the value expression "(PFR_Button_Numerator / VPIP_button_denominator) * 100".
To change this stat to be for different positions you would need to edit the columns as shown above - e.g. the cutoff is position=1, hijack position=2. UTG depends on how many players there are at the table, but you can keep increasing the position count like this for each seat.
Note: BB is always position 8 and SB is position 9.
ALso under format i see an entry "/%.2f". what does this mean?
This is explained in the FAQ.
It means 2 decimal places.
In categories i see assigned actions and street preflop but i will get to this later as one thing at a time i guess. WIll try to read some more on your site about this and sorry if i seem so stupid about this.
When you add your stats to reports or the HUD you can narrow your selection down to categories - this is where they are defined.