Workbench Command is a set of command-line tools that can be used to perform simple and complex operations within Connectome Workbench.
SPATIAL STATISTICS ON A METRIC FILE
wb_command -metric-stats
<metric-in> - the input metric
[-reduce] - use a reduction operation
<operation> - the reduction operation
[-percentile] - give the value at a percentile
<percent> - the percentile to find, must be between 0 and 100
[-column] - only display output for one column
<column> - the column number or name
[-roi] - only consider data inside an roi
<roi-metric> - the roi, as a metric file
[-match-maps] - each column of input uses the corresponding column
from the roi file
[-show-map-name] - print map index and name before each output
For each column of the input, a line of text is printed, resulting from
the specified reduction or percentile operation. Use -column to only
give output for a single column. If the -roi option is used without
-match-maps, then each line will contain as many numbers as there are
maps in the ROI file, separated by tab characters. Exactly one of
-reduce or -percentile must be specified.
The argument to the -reduce option must be one of the following:
MAX: the maximum value
MIN: the minimum value
INDEXMAX: the 1-based index of the maximum value
INDEXMIN: the 1-based index of the minimum value
SUM: add all values
PRODUCT: multiply all values
MEAN: the mean of the data
STDEV: the standard deviation (N denominator)
SAMPSTDEV: the sample standard deviation (N-1 denominator)
VARIANCE: the variance of the data
TSNR: mean divided by sample standard deviation (N-1 denominator)
COV: sample standard deviation (N-1 denominator) divided by mean
L2NORM: square root of sum of squares
MEDIAN: the median of the data
MODE: the mode of the data
COUNT_NONZERO: the number of nonzero elements in the data