Hi Guys,
I'd like to create a stat to show the number of times I win a pot vs the number of times I should win given how many people are involved.
e.g if every one is playing the same optimal strat, in a Heads-up pot hero should win 50% of time. In a 3 way (sexy) hero should win 33%. In a 4way 25%, etc
so in a 3way, say I am winning 40% of pots, it's 40% / 33.3% = 1.2 - great
If I was only winning 20% of pots it's 20% / 33.3% = 0.6 - not so hot
A raito of 1.0 would indicate winning exactly my fair share of pots, given number of players in the hand.
I thought I might be able to do this by diving the Win% stat by the theoritical optimal %'s.
And use the column cnt_players_ttl to get the average numbers of players in the hands used to generate the win%. Then just need to divide 100 / cnt_players_ttl to get my optimal percentages
so custom stat comes out to be
( ( cnt_hands_won / cnt_hands ) * 100 ) / ( 100 / cnt_players_ttl )
Everything look legit? Anything that I have missed? Any better way to do it?
Cheers for any feedback.