<%
// Copy this table definition to a file named SubGroupTestData.jsp
// so it can be included in the LinePlot sample programs
table.addColumn(1, java.lang.Double.class, null);
table.setColumnLabel(1, "Section");
table.addColumn(2, java.lang.Double.class, null);
table.setColumnLabel(2, "x2");
table.addColumn(3, java.lang.Double.class, null);
table.setColumnLabel(3, "x3");
table.addColumn(4, java.lang.Double.class, null);
table.setColumnLabel(4, "y1");
table.addColumn(5, java.lang.Double.class, null);
table.setColumnLabel(5, "y2");
table.addColumn(6, java.lang.Double.class, null);
table.setColumnLabel(6, "y3");
table.addRow(1);
table.addRow(2);
table.addRow(3);
table.addRow(4);
table.addRow(5);
table.addRow(6);
table.addRow(7);
table.addRow(8);
table.addRow(9);
table.setCell(1, 1, new Double(1));
table.setCell(1, 2, new Double(20));
table.setCell(1, 3, new Double(30));
table.setCell(1, 4, new Double(3));
table.setCell(1, 5, new Double(5));
table.setCell(1, 6, new Double(25));
table.setCell(2, 1, new Double(2));
table.setCell(2, 2, new Double(30));
table.setCell(2, 3, new Double(40));
table.setCell(2, 4, new Double(6));
table.setCell(2, 5, new Double(10));
table.setCell(2, 6, new Double(30));
table.setCell(3, 1, new Double(1));
table.setCell(3, 2, new Double(40));
table.setCell(3, 3, new Double(50));
table.setCell(3, 4, new Double(9));
table.setCell(3, 5, new Double(15));
table.setCell(3, 6, new Double(35));
table.setCell(4, 1, new Double(2));
table.setCell(4, 2, new Double(50));
table.setCell(4, 3, new Double(60));
table.setCell(4, 4, new Double(12));
table.setCell(4, 5, new Double(20));
table.setCell(4, 6, new Double(40));
table.setCell(5, 1, new Double(1));
table.setCell(5, 2, new Double(60));
table.setCell(5, 3, new Double(70));
table.setCell(5, 4, new Double(15));
table.setCell(5, 5, new Double(25));
table.setCell(5, 6, new Double(50));
table.setCell(6, 1, new Double(2));
table.setCell(6, 2, new Double(80));
table.setCell(6, 3, new Double(90));
table.setCell(6, 4, new Double(18));
table.setCell(6, 5, new Double(20));
table.setCell(6, 6, new Double(55));
table.setCell(7, 1, new Double(1));
table.setCell(7, 2, new Double(90));
table.setCell(7, 3, new Double(100));
table.setCell(7, 4, new Double(21));
table.setCell(7, 5, new Double(15));
table.setCell(7, 6, new Double(60));
table.setCell(8, 1, new Double(2));
table.setCell(8, 2, new Double(100));
table.setCell(8, 3, new Double(110));
table.setCell(8, 4, new Double(24));
table.setCell(8, 5, new Double(10));
table.setCell(8, 6, new Double(65));
table.setCell(9, 1, new Double(1));
table.setCell(9, 2, new Double(110));
table.setCell(9, 3, new Double(120));
table.setCell(9, 4, new Double(27));
table.setCell(9, 5, new Double(5));
table.setCell(9, 6, new Double(70));
%>