Discuss how to create custom stats, reports and HUD profiles and share your creations.
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
by Melkien » Tue Jan 15, 2013 5:08 pm
Oh, how do I actually refer to big blinds?
Kra, I actually see 0/0 like you mention.
-
Melkien
-
- Posts: 27
- Joined: Thu May 31, 2012 12:04 am
by kraada » Tue Jan 15, 2013 7:52 pm
My last post explains how to make that change
-
kraada
- Moderator
-
- Posts: 54431
- Joined: Wed Mar 05, 2008 2:32 am
- Location: NY
by Melkien » Sat Jan 19, 2013 9:51 am
Great that fixed it, thanks ^^.
-
Melkien
-
- Posts: 27
- Joined: Thu May 31, 2012 12:04 am
by Melkien » Tue Feb 19, 2013 6:44 pm
Hey guys! I keep having trouble with this situation. Can anyone tell me what is wrong?
Stat -
- Code: Select all
Raise First In 0-8bb: (cnt_p_raise_first_in_0_8bb / cnt_p_open_opp_0_8bb ) * 100
Columns -
- Code: Select all
cnt_p_raise_first_in_0_8bb: sum(if[tourney_hand_player_statistics.flg_p_first_raise AND tourney_hand_player_statistics.flg_p_open_opp AND tourney_hand_player_statistics.amt_p_effective_stack>0 AND tourney_hand_player_statistics.amt_p_effective_stack<8, 1, 0])
cnt_p_open_opp_0_8bb: sum(if[tourney_hand_player_statistics.flg_p_open_opp AND (tourney_hand_player_statistics.amt_p_effective_stack/tourney_blinds.amt_bb)>0 AND (tourney_hand_player_statistics.amt_p_effective_stack/tourney_blinds.amt_bb)<8, 1, 0])
In the stats it shows 0 and - mostly, never detecting if the guy raises first in at that stack depth, and I have already tested it vs people who do so it should actually throw a result.
Any help appreciated
.
-
Melkien
-
- Posts: 27
- Joined: Thu May 31, 2012 12:04 am
by kraada » Tue Feb 19, 2013 7:53 pm
In your numerator you're not dividing by the size of the big blind (as you are correctly in your denominator) - so you're only getting times when they do it with between 0 and 8 chips. Which is probably why you're getting a lot of 0s
-
kraada
- Moderator
-
- Posts: 54431
- Joined: Wed Mar 05, 2008 2:32 am
- Location: NY
by Melkien » Tue Feb 19, 2013 11:24 pm
Haha very true, didnt realize. Thanks for pointing that out. How could I fix that to work? Not very sure. Thanks again!
-
Melkien
-
- Posts: 27
- Joined: Thu May 31, 2012 12:04 am
by kraada » Wed Feb 20, 2013 9:40 am
Replace tourney_hand_player_statistics.amt_p_effective_stack with (tourney_hand_player_statistics.amt_p_effective_stack/tourney_blinds.amt_bb) just like you did in the denominator - that part works fine!
-
kraada
- Moderator
-
- Posts: 54431
- Joined: Wed Mar 05, 2008 2:32 am
- Location: NY
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 43 guests