Page 1 of 1

Check back flop count stat

PostPosted: Tue Sep 16, 2008 9:35 am
by gamiel
Hi,

I am having trouble creating a statistic that counts the number of times a player checked back the flop/turn/river ie. checked when last to act. Any ideas on how to do this?

Thanks,
David

Re: Check back flop count stat

PostPosted: Tue Sep 16, 2008 12:47 pm
by WhiteRider
I think all you will need are fields like these:
holdem_hand_player_statistics.flg_f_check
holdem_hand_player_detail.flg_f_has_position

So the Column would be
cnt_f_check_behind =
sum( if[ holdem_hand_player_statistics.flg_f_check AND holdem_hand_player_detail.flg_f_has_position, 1, 0] )

You will also want a denominator Column to divide by.
cnt_f_check_behind_opp =
sum( if[ holdem_hand_player_detail.flg_f_open_opp AND holdem_hand_player_detail.flg_f_has_position, 1, 0] )

Then your stat's value expression will be:
( cnt_f_check_behind / cnt_f_check_behind_opp ) * 100

Custom Statistics and Reports FAQ.