[Assorted-commits] SF.net SVN: assorted:[1132] ydb/trunk/tools/analysis.py
Brought to you by:
yangzhang
From: <yan...@us...> - 2009-01-14 18:29:56
|
Revision: 1132 http://assorted.svn.sourceforge.net/assorted/?rev=1132&view=rev Author: yangzhang Date: 2009-01-14 18:29:46 +0000 (Wed, 14 Jan 2009) Log Message: ----------- easier to read Modified Paths: -------------- ydb/trunk/tools/analysis.py Modified: ydb/trunk/tools/analysis.py =================================================================== --- ydb/trunk/tools/analysis.py 2009-01-14 18:29:07 UTC (rev 1131) +++ ydb/trunk/tools/analysis.py 2009-01-14 18:29:46 UTC (rev 1132) @@ -57,8 +57,10 @@ yield (seqno, t) tups = agg(getpairs()) + print '===', label, '===' print 'max seqno, mean time, stdev time [raw data]' for seqno, mean, sd, raw in tups: print seqno, mean, sd, raw + print xs, ys, es, rs = zip(*tups) errorbar(xs, ys, es, label = label) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |