by sawwee » Sun Nov 25, 2012 11:39 pm
I tried to create an allin adjusted version of these two stats. Could you please have a look on it? Do you think they are correct?
At first I created two new columns:
Column amt_chips_expected_won_hhrv definition: sum(if[tourney_hand_player_statistics.amt_expected_won > 0, tourney_hand_player_statistics.amt_expected_won, 0])
and
Column amt_chips_expected_lost definition: sum(if[not(tourney_hand_player_statistics.amt_expected_won > 0), -1.0 * tourney_hand_player_statistics.amt_expected_won, 0])
(I'm quite unsure about this second one.)
Then I created the stats:
Adjusted Chip Won stat definition: (amt_chips_expected_won_hhrv / 100) * 100
and
Adjusted Chip Lost stat: (amt_chips_expected_lost / 100) * 100
Are all of these correct?
By the way what is the meaning of 'HHRV' in the stats you created?
Thank you!