121122123124125126127128129130131
report.endTable(); report.h1("Field Ranges"); report.beginTable(); report.beginRow(); report.header("Name"); report.header("Class?"); report.header("Complete?"); report.header("Int?"); report.header("Real?"); report.header("Max");
122123124125126127128129130131132
report.h1("Field Ranges"); report.beginTable(); report.beginRow(); report.header("Name"); report.header("Class?"); report.header("Complete?"); report.header("Int?"); report.header("Real?"); report.header("Max"); report.header("Min");
123124125126127128129130131132133
report.h1("Field Ranges"); report.beginTable(); report.beginRow(); report.header("Name"); report.header("Class?"); report.header("Complete?"); report.header("Int?"); report.header("Real?"); report.header("Max"); report.header("Min"); report.header("Mean");
124125126127128129130131132133134
report.beginTable(); report.beginRow(); report.header("Name"); report.header("Class?"); report.header("Complete?"); report.header("Int?"); report.header("Real?"); report.header("Max"); report.header("Min"); report.header("Mean"); report.header("Standard Deviation");
125126127128129130131132133134135
report.beginRow(); report.header("Name"); report.header("Class?"); report.header("Complete?"); report.header("Int?"); report.header("Real?"); report.header("Max"); report.header("Min"); report.header("Mean"); report.header("Standard Deviation"); report.endRow();
126127128129130131132133134135136
report.header("Name"); report.header("Class?"); report.header("Complete?"); report.header("Int?"); report.header("Real?"); report.header("Max"); report.header("Min"); report.header("Mean"); report.header("Standard Deviation"); report.endRow();
127128129130131132133134135136137
report.header("Class?"); report.header("Complete?"); report.header("Int?"); report.header("Real?"); report.header("Max"); report.header("Min"); report.header("Mean"); report.header("Standard Deviation"); report.endRow(); for (final DataField df : this.analyst.getScript().getFields()) {
128129130131132133134135136137138
report.header("Complete?"); report.header("Int?"); report.header("Real?"); report.header("Max"); report.header("Min"); report.header("Mean"); report.header("Standard Deviation"); report.endRow(); for (final DataField df : this.analyst.getScript().getFields()) { report.beginRow();
129130131132133134135136137138139
report.header("Int?"); report.header("Real?"); report.header("Max"); report.header("Min"); report.header("Mean"); report.header("Standard Deviation"); report.endRow(); for (final DataField df : this.analyst.getScript().getFields()) { report.beginRow(); report.cell(df.getName());
151152153154155156157158159160161
if (df.getClassMembers().size() > 0) { report.beginRow(); report.cell(" "); report.beginTableInCell(EIGHT_SPAN); report.beginRow(); report.header("Code"); report.header("Name"); report.header("Count"); report.endRow(); for (final AnalystClassItem item : df.getClassMembers()) { report.beginRow();