]> git.llucax.com Git - software/dgc/dgcbench.git/commit
stats.py: Allow specifying input expression and output format
authorLeandro Lucarella <llucax@gmail.com>
Sun, 14 Nov 2010 21:46:12 +0000 (18:46 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 14 Nov 2010 21:46:12 +0000 (18:46 -0300)
commit0595f4c49dac6497be162270839c6271dee3068d
treed12f9ceb21d3e0f65a0e2b9a4789b77ae66b9c13
parent226a056a64171b7464faaf97ed5d331ffc56478a
stats.py: Allow specifying input expression and output format

Now the script can take an arbitrary (optional) expression as the first
argument to parse the input file, using a separator (taken as the third
argument) and field specification for the expression, using $1 for the
first field, $2 for the second, etc. (similar to AWK). As second argument
the script takes the output format, in Python format specification, with
keys: min, max, mean, and std.

The defaults are '$1' for the first argument (expression to parse as
input), '%(min)s,%(mean)s,%(max)s,%(std)s' as output format and ',' as
input separator. This defaults match the old behaviour.
stats.py