From 2c00422f34adcea7db0778eed73092d7356e97ba Mon Sep 17 00:00:00 2001 From: eblade Date: Tue, 25 Nov 2008 07:33:20 -0500 Subject: [PATCH] clean up some stat descriptions --- pyfpdb/Stats.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index 7bb9a8c5..5ca42fe8 100644 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -88,14 +88,14 @@ def vpip(stat_dict, player): 'v=%3.1f' % (100*stat) + '%', 'vpip=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['vpip'], stat_dict[player]['n']), - 'vpip' + 'Voluntarily Put In Pot %' ) except: return (stat, '%3.1f' % (0) + '%', - 'w=%3.1f' % (0) + '%', - 'wtsd=%3.1f' % (0) + '%', + 'v=%3.1f' % (0) + '%', + 'vpip=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), - 'wtsd' + 'Voluntarily Put In Pot %' ) def pfr(stat_dict, player): @@ -108,7 +108,7 @@ def pfr(stat_dict, player): 'p=%3.1f' % (100*stat) + '%', 'pfr=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['pfr'], stat_dict[player]['n']), - 'pfr' + 'Pre-Flop Raise %' ) except: return (stat, @@ -116,7 +116,7 @@ def pfr(stat_dict, player): 'p=%3.1f' % (0) + '%', 'pfr=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), - 'pfr' + 'Pre-Flop Raise %' ) def wtsd(stat_dict, player): @@ -172,7 +172,7 @@ def saw_f(stat_dict, player): 'sf=%3.1f' % (100*stat) + '%', 'saw_f=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['saw_f'], stat_dict[player]['n']), - 'saw_f' + 'Flop Seen %' ) except: stat = 0.0 @@ -183,7 +183,7 @@ def saw_f(stat_dict, player): 'sf=%3.1f' % (stat) + '%', 'saw_f=%3.1f' % (stat) + '%', '(%d/%d)' % (num, den), - 'saw_f' + 'Flop Seen %' ) def n(stat_dict, player): @@ -412,7 +412,7 @@ def a_freq_4(stat_dict, player): 'a4=%3.1f' % (0) + '%', 'a_fq_4=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), - 'Aggression Freq flop/4th' + 'Aggression Freq 7th' ) def cb_1(stat_dict, player):