by kraada » Mon Dec 15, 2008 12:24 pm
You would need to create a couple of custom stats but they shouldn't be that bad.
There's a database field: holdem_hand_summary.cnt_players_f which is the count of how many players saw the flop.
So for went to showdown when seeing the flop vs 2 players it would be, in the Holdem Cash Player Statistics section, create first a new column, call it cnt_3_handed_flops, defined as:
sum(if[holdem_hand_summary.cnt_players_f = 3 and flg_f_saw, 1, 0])
Then another column cnt_3_handed_flops_wtsd:
sum(if[holdem_hand_summary.cnt_players_f = 3 and flg_f_saw and flg_showdown, 1, 0])
Then create a stat on the stats tab that puts one over the other, times 100 to make it a percent and you should be all set. Don't forget to add information on the stat's format tab so you can see it in reports.