VoltTable.ColumnInfo cols[] = Arrays.copyOfRange(VoltTableUtil.extractColumnInfo(vt), offset, vt.getColumnCount());
Map<String, Object[]> totalRows = new TreeMap<String, Object[]>();
Map<String, List<Double>[]> stdevRows = new HashMap<String, List<Double>[]>();
while (vt.advanceRow()) {
String procName = vt.getString(offset);
Object row[] = totalRows.get(procName);
List<Double> stdevs[] = stdevRows.get(procName);
if (row == null) {
row = new Object[cols.length];