examples: Take a data set with several columns of PAR BPM x and y readings (one set per row)
and create a new file with one column for x readings and one column for y readings, with each page
containing one set of readings.
sddscollect par.bpm par.orbits -collect=suffix=x -collect=suffix=y
The output file has three columns, x, y, and Rootname, the last containing the original column
names without the suffix. Do statistics on PAR BPM x and y readbacks, then collect the statistics
into columns, one column for each type of statistic:
sddsprocess par.bpm -pipe=out -process=P?P?[xy],spread,%sSpread \
-process=P?P?[xy],ave,%sMean -process=P?P?[xy],stand,%sStDev | sddscollapse | \
sddscollect -pipe=in parbpm.stat \
-collect=suffix=xSpread -collect=suffix=xMean -collect=suffix=xStDev \
-collect=suffix=ySpread -collect=suffix=yMean -collect=suffix=yStDev
The output file has columns xSpread, ySpread, xMean, yMean, xStDev, and yStDev, plus Rootname
containing the remainder of each original column name after the suffix is removed. All collections
must produce matching sets of name remainders.