Discuss how to create custom stats, reports and HUD profiles and share your creations.
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
by js2002 » Sat May 26, 2012 9:33 am
lookup_actions_f.action = 'BF'
cnt_f_cbet_fold_to_raise_SRP_HU:
sum(if[
lookup_actions_f.action = 'BF' AND
cash_hand_player_statistics.flg_f_cbet AND
cash_hand_summary.cnt_players_f=2
AND NOT(cash_hand_player_statistics.flg_p_3bet OR cash_hand_player_statistics.flg_p_4bet), 1, 0])
cnt_f_cbet_fold_to_raise_SRP_HU:
sum(if[
cash_hand_player_statistics.flg_f_cbet AND
cash_hand_summary.cnt_players_f=2
AND NOT(cash_hand_player_statistics.flg_p_3bet OR cash_hand_player_statistics.flg_p_4bet), 1, 0])
we have many people with only 5% at this stat. That cant be correct.
-
js2002
-
- Posts: 1502
- Joined: Fri Feb 15, 2008 5:44 am
- Location: Germany
by EinSIM » Sat May 26, 2012 12:35 pm
2nd stat is wrong, the trigger face raise is missing or something like
lookup_actions_f.action like 'B_%'
-
EinSIM
-
- Posts: 74
- Joined: Tue May 06, 2008 6:16 pm
by js2002 » Sat May 26, 2012 1:32 pm
I see, tu!
(cnt_f_cbet_fold_to_raise / cnt_f_cbet_face_raise) * 100
We took the wrong denumerators.
This one is the correct build in:
cnt_f_cbet_face_raise
sum(if[cash_hand_player_statistics.flg_f_cbet AND cash_hand_player_statistics.flg_f_face_raise, 1, 0])
-
js2002
-
- Posts: 1502
- Joined: Fri Feb 15, 2008 5:44 am
- Location: Germany
by EinSIM » Sun May 27, 2012 6:19 am
that denum is wrong, too ;-)
the preconditions are missing and should be the same as the first one :
- Code: Select all
cash_hand_summary.cnt_players_f=2
AND NOT(cash_hand_player_statistics.flg_p_3bet OR cash_hand_player_statistics.flg_p_4bet
-
EinSIM
-
- Posts: 74
- Joined: Tue May 06, 2008 6:16 pm
by js2002 » Sun May 27, 2012 7:34 am
cbet AND face_raise not enough?
-
js2002
-
- Posts: 1502
- Joined: Fri Feb 15, 2008 5:44 am
- Location: Germany
by kraada » Sun May 27, 2012 9:12 am
It should be but you probably want to exclude times the pot was 3bet or 4bet preflop if you're doing it in the numerator - otherwise you're not comparing apples to apples.
-
kraada
- Moderator
-
- Posts: 54430
- Joined: Wed Mar 05, 2008 2:32 am
- Location: NY
by js2002 » Sun May 27, 2012 9:50 am
I do have "AND NOT(cash_hand_player_statistics.flg_p_3bet OR cash_hand_player_statistics.flg_p_4bet), 1, 0])" in numerator and denumerator, where is the problem?
-
js2002
-
- Posts: 1502
- Joined: Fri Feb 15, 2008 5:44 am
- Location: Germany
by kraada » Sun May 27, 2012 10:06 am
Then it should be working fine. Can you find any cases that match the stat which should not?
-
kraada
- Moderator
-
- Posts: 54430
- Joined: Wed Mar 05, 2008 2:32 am
- Location: NY
by js2002 » Sun May 27, 2012 10:48 am
no, it works now
-
js2002
-
- Posts: 1502
- Joined: Fri Feb 15, 2008 5:44 am
- Location: Germany
by js2002 » Sun May 27, 2012 12:07 pm
new problem:
AND NOT(cash_hand_player_statistics.flg_p_3bet OR cash_hand_player_statistics.flg_p_4bet)
should filter for single raised pots (SRP), but Player can call a 3bet or 4bet+, so my filter is wrong?!
How do I fix it?
EDIT: AND NOT(cash_hand_player_statistics.flg_p_3bet OR cash_hand_player_statistics.flg_p_4bet_opp)
counts some cases where player 5bets :-(
maybe we should add a "last action preflop != call" ?
-
js2002
-
- Posts: 1502
- Joined: Fri Feb 15, 2008 5:44 am
- Location: Germany
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 10 guests