report.header("Mean");
report.header("Standard Deviation");
report.endRow();
for (final DataField df : this.analyst.getScript().getFields()) {
report.beginRow();
report.cell(df.getName());
report.cell(Format.formatYesNo(df.isClass()));
report.cell(Format.formatYesNo(df.isComplete()));
report.cell(Format.formatYesNo(df.isInteger()));
report.cell(Format.formatYesNo(df.isReal()));