Position when SB Open Folds

Discuss how to create custom stats, reports and HUD profiles and share your creations.

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Re: Position when SB Open Folds

Postby tobakudan » Wed Jun 17, 2015 3:36 am

I repeat, this is not a stat for hero; it is an opponent stat. Nevertheless, its aim is to give us a hero stat (i.e. it will be interpreted as a hero stat).

Nothing in hero's data indicates who the opponent was in each hand.


This is irrelevant since hero's data isn't used; this is an opponent stat, the meaning of which will be how often I limped against that opponent. Furthermore, since I only play heads up, there is no need to specify who the opponent is.

If you make a stat which is shown for hero and uses information about limps, that is how often hero limped. If you use information about facing limps, that is how often hero faced a limp in all hands they player (regardless of opponent).


Since I am creating an opponent stat, this is backwards. I am making a stat that is shown for my opponent. I use the piece of information "how often my opponent faced a limp." Since this is heads up, this is equivalent to "how often I limped against my opponent." The column for this is simple:

Code: Select all
sum(if[tourney_hand_player_statistics.cnt_p_face_limpers > 0, 1, 0])


I also use the piece of information "how often my opponent was in the BB." Since this is heads up, this is equivalent to "how often I had the opportunity to limp against my opponent." The column for this is also simple:

Code: Select all
sum(if[tourney_hand_player_statistics.position = 8, 1, 0])


The result is that, although this is an opponent stat, its meaning is my limping frequency against this particular opponent. And I have yet to see why the stat I described doesn't work when I open fold in the SB. If the BB is never given an opportunity to act (because the SB open folded), is it simply counted as the BB not having played a hand at all?
tobakudan
 
Posts: 84
Joined: Mon Dec 22, 2014 10:03 pm

Re: Position when SB Open Folds

Postby kraada » Wed Jun 17, 2015 7:52 am

You are drawing a lot of inferences. If you draw your inferences right, the data will be equivalent. If you draw them wrong, it won't be. In the case you have about limping, yes, the value will work as you expect it to provided you have no other data about this opponent and you're playing heads up only and never play anything else.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Position when SB Open Folds

Postby tobakudan » Wed Jun 17, 2015 8:11 am

I understand.

But now, back to the error I'm experiencing – unfortunately, it is not working as expected. To repeat, when I open fold in the SB, the opportunities column is not incremented. Since it solely consists of

Code: Select all
tourney_hand_player_statistics.position = 8


it seems that this is not true for my opponent when I open fold in the SB. Why is this the case, and is there any way to get around it?
tobakudan
 
Posts: 84
Joined: Mon Dec 22, 2014 10:03 pm

Re: Position when SB Open Folds

Postby kraada » Wed Jun 17, 2015 9:36 am

It should be but given your math you can actually use a different built in column and not worry about it - cnt_walks is how often someone is in the big blind and everyone open folds to him. That should do what you want.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Previous

Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: wallacedavidl and 50 guests

cron