Ability to check formulas
--HG-- extra : convert_revision : 68a2a19cceb4a8cf8a2798ee5c019d25c0fca3cc
This commit is contained in:
parent
cae9210dce
commit
cd56e4e08e
2 changed files with 36 additions and 13 deletions
|
@ -3,6 +3,8 @@ import operator, re, types
|
||||||
|
|
||||||
source = None
|
source = None
|
||||||
display_run = 0
|
display_run = 0
|
||||||
|
global globalTicks
|
||||||
|
globalTicks = None
|
||||||
|
|
||||||
def issequence(t):
|
def issequence(t):
|
||||||
return isinstance(t, types.TupleType) or isinstance(t, types.ListType)
|
return isinstance(t, types.TupleType) or isinstance(t, types.ListType)
|
||||||
|
@ -130,6 +132,7 @@ def cmp(a, b):
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
class Statistic(object):
|
class Statistic(object):
|
||||||
|
|
||||||
def __init__(self, data):
|
def __init__(self, data):
|
||||||
self.__dict__.update(data.__dict__)
|
self.__dict__.update(data.__dict__)
|
||||||
if not self.__dict__.has_key('value'):
|
if not self.__dict__.has_key('value'):
|
||||||
|
@ -138,9 +141,25 @@ class Statistic(object):
|
||||||
self.__dict__['bins'] = None
|
self.__dict__['bins'] = None
|
||||||
if not self.__dict__.has_key('ticks'):
|
if not self.__dict__.has_key('ticks'):
|
||||||
self.__dict__['ticks'] = None
|
self.__dict__['ticks'] = None
|
||||||
|
if 'vc' not in self.__dict__:
|
||||||
|
self.vc = {}
|
||||||
|
|
||||||
def __getattribute__(self, attr):
|
def __getattribute__(self, attr):
|
||||||
|
if attr == 'ticks':
|
||||||
|
if self.__dict__['ticks'] != globalTicks:
|
||||||
|
self.__dict__['value'] = None
|
||||||
|
self.__dict__['ticks'] = globalTicks
|
||||||
|
return self.__dict__['ticks']
|
||||||
if attr == 'value':
|
if attr == 'value':
|
||||||
|
if self.__dict__['ticks'] != globalTicks:
|
||||||
|
if self.__dict__['ticks'] != None and \
|
||||||
|
len(self.__dict__['ticks']) == 1:
|
||||||
|
self.vc[self.__dict__['ticks'][0]] = self.__dict__['value']
|
||||||
|
self.__dict__['ticks'] = globalTicks
|
||||||
|
if len(globalTicks) == 1 and self.vc.has_key(globalTicks[0]):
|
||||||
|
self.__dict__['value'] = self.vc[globalTicks[0]]
|
||||||
|
else:
|
||||||
|
self.__dict__['value'] = None
|
||||||
if self.__dict__['value'] == None:
|
if self.__dict__['value'] == None:
|
||||||
self.__dict__['value'] = self.getValue()
|
self.__dict__['value'] = self.getValue()
|
||||||
return self.__dict__['value']
|
return self.__dict__['value']
|
||||||
|
@ -152,11 +171,12 @@ class Statistic(object):
|
||||||
if attr == 'bins':
|
if attr == 'bins':
|
||||||
if value is not None:
|
if value is not None:
|
||||||
value = source.getBin(value)
|
value = source.getBin(value)
|
||||||
elif attr == 'ticks' and type(value) is str:
|
#elif attr == 'ticks' and type(value) is str:
|
||||||
value = [ int(x) for x in value.split() ]
|
# value = [ int(x) for x in value.split() ]
|
||||||
|
|
||||||
self.__dict__[attr] = value
|
self.__dict__[attr] = value
|
||||||
self.__dict__['value'] = None
|
self.__dict__['value'] = None
|
||||||
|
self.vc = {}
|
||||||
else:
|
else:
|
||||||
super(Statistic, self).__setattr__(attr, value)
|
super(Statistic, self).__setattr__(attr, value)
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
from __future__ import division
|
from __future__ import division
|
||||||
import re, sys, math
|
import re, sys, math
|
||||||
|
|
||||||
|
|
||||||
def usage():
|
def usage():
|
||||||
print '''\
|
print '''\
|
||||||
Usage: %s [-E] [-F] [-d <db> ] [-g <get> ] [-h <host>] [-p]
|
Usage: %s [-E] [-F] [-d <db> ] [-g <get> ] [-h <host>] [-p]
|
||||||
|
@ -257,18 +258,18 @@ def commands(options, command, args):
|
||||||
for stat in stats:
|
for stat in stats:
|
||||||
|
|
||||||
print "%s:" % stat.name
|
print "%s:" % stat.name
|
||||||
print "%-30s %12s %12s %4s %5s %5s %5s" % \
|
print "%-20s %12s %12s %4s %5s %5s %5s %6s" % \
|
||||||
("run name", "average", "stdev", ">10%", ">1SDV", ">2SDV", "SAMP")
|
("run name", "average", "stdev", ">10%", ">1SDV", ">2SDV", "SAMP", "CV")
|
||||||
print "%-30s %12s %12s %4s %5s %5s %5s" % \
|
print "%-20s %12s %12s %4s %5s %5s %5s %6s" % \
|
||||||
("------------------------------", "------------",
|
("--------------------", "------------",
|
||||||
"------------", "----", "-----", "-----", "-----")
|
"------------", "----", "-----", "-----", "-----", "------")
|
||||||
#loop through all the selected runs
|
#loop through all the selected runs
|
||||||
for run in runs:
|
for run in runs:
|
||||||
info.display_run = run.run;
|
info.display_run = run.run;
|
||||||
runTicks = info.source.retTicks([ run ])
|
runTicks = info.source.retTicks([ run ])
|
||||||
#throw away the first one, it's 0
|
#throw away the first one, it's 0
|
||||||
runTicks.pop(0)
|
runTicks.pop(0)
|
||||||
stat.ticks = runTicks
|
info.globalTicks = runTicks
|
||||||
avg = float(stat)
|
avg = float(stat)
|
||||||
stdev = 0
|
stdev = 0
|
||||||
numoutsideavg = 0
|
numoutsideavg = 0
|
||||||
|
@ -277,7 +278,8 @@ def commands(options, command, args):
|
||||||
|
|
||||||
#loop through all the various ticks for each run
|
#loop through all the various ticks for each run
|
||||||
for tick in runTicks:
|
for tick in runTicks:
|
||||||
stat.ticks = str(tick)
|
#stat.ticks = str(tick)
|
||||||
|
info.globalTicks = [ tick ]
|
||||||
val = float(stat)
|
val = float(stat)
|
||||||
if (val < (avg * .9)) or (val > (avg * 1.1)):
|
if (val < (avg * .9)) or (val > (avg * 1.1)):
|
||||||
numoutsideavg += 1
|
numoutsideavg += 1
|
||||||
|
@ -285,17 +287,18 @@ def commands(options, command, args):
|
||||||
|
|
||||||
stdev = math.sqrt(stdev / len(runTicks))
|
stdev = math.sqrt(stdev / len(runTicks))
|
||||||
for tick in runTicks:
|
for tick in runTicks:
|
||||||
stat.ticks = str(tick)
|
info.globalTicks = [ tick ]
|
||||||
val = float(stat)
|
val = float(stat)
|
||||||
if (val < (avg - stdev)) or (val > (avg + stdev)):
|
if (val < (avg - stdev)) or (val > (avg + stdev)):
|
||||||
numoutside1std += 1
|
numoutside1std += 1
|
||||||
if (val < (avg - (2*stdev))) or (val > (avg + (2*stdev))):
|
if (val < (avg - (2*stdev))) or (val > (avg + (2*stdev))):
|
||||||
numoutside2std += 1
|
numoutside2std += 1
|
||||||
|
|
||||||
print "%-30s %12s %12s %4s %5s %5s %5s" % \
|
print "%-20s %12s %12s %4s %5s %5s %5s %6s" % \
|
||||||
(run.name, "%.1f" % avg, "%.1f" % stdev,
|
(run.name, "%.1f" % avg, "%.1f" % stdev,
|
||||||
"%d" % numoutsideavg, "%d" % numoutside1std,
|
"%d" % numoutsideavg, "%d" % numoutside1std,
|
||||||
"%d" % numoutside2std, "%d" % len(runTicks))
|
"%d" % numoutside2std, "%d" % len(runTicks),
|
||||||
|
"%.1f" % (stdev/avg*100))
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
|
@ -320,7 +323,7 @@ def commands(options, command, args):
|
||||||
else:
|
else:
|
||||||
if options.ticks:
|
if options.ticks:
|
||||||
print 'only displaying sample %s' % options.ticks
|
print 'only displaying sample %s' % options.ticks
|
||||||
stat.ticks = options.ticks
|
info.globalTicks = [ int(x) for x in options.ticks.split() ]
|
||||||
|
|
||||||
if options.binned:
|
if options.binned:
|
||||||
print 'kernel ticks'
|
print 'kernel ticks'
|
||||||
|
|
Loading…
Reference in a new issue