List<String> colLabels = getColLabels();
ecsvp.write("");
for (String colLabel : colLabels) {
ecsvp.write(colLabel);
}
ecsvp.writeln();
List<String> rowLabels = getRowLabels();
String[][] matrix = getMatrixFormatted();
for (int i = 0; i < rowLabels.size(); i++) {
String rowLabel = rowLabels.get(i);