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?