<%
// Copy this table definition to a file named ErrorData.jsp
// so it can be included in the LinePlot sample programs
table.addColumn(1, java.lang.Double.class, null);
table.setColumnLabel(1, "S1");
table.addColumn(2, java.lang.Double.class, null);
table.setColumnLabel(2, "S2");
table.addColumn(3, java.lang.Double.class, null);
table.setColumnLabel(3, "S3");
table.addColumn(4, java.lang.Double.class, null);
table.setColumnLabel(4, "S4");
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.addRow(10);
table.addRow(11);
table.addRow(12);
table.addRow(13);
table.addRow(14);
table.addRow(15);
table.addRow(16);
table.addRow(17);
table.addRow(18);
table.addRow(19);
table.addRow(20);
table.addRow(21);
table.addRow(22);
table.setCell(1, 1, new Double(52));
table.setCell(1, 2, new Double(45));
table.setCell(1, 3, new Double(13));
table.setCell(1, 4, new Double(15));
table.setCell(2, 1, new Double(52));
table.setCell(2, 2, new Double(-15));
table.setCell(2, 3, new Double(5));
table.setCell(2, 4, new Double(25));
table.setCell(3, 1, new Double(38));
table.setCell(3, 2, new Double(8));
table.setCell(3, 3, new Double(24));
table.setCell(3, 4, new Double(12));
table.setCell(4, 1, new Double(77));
table.setCell(4, 2, new Double(-38));
table.setCell(4, 3, new Double(18));
table.setCell(4, 4, new Double(11));
table.setCell(5, 1, new Double(34));
table.setCell(5, 2, new Double(38));
table.setCell(5, 3, new Double(26));
table.setCell(5, 4, new Double(19));
table.setCell(6, 1, new Double(92));
table.setCell(6, 2, new Double(-10));
table.setCell(6, 3, new Double(12));
table.setCell(6, 4, new Double(33));
table.setCell(7, 1, new Double(60));
table.setCell(7, 2, new Double(10));
table.setCell(7, 3, new Double(31));
table.setCell(7, 4, new Double(17));
table.setCell(8, 1, new Double(29));
table.setCell(8, 2, new Double(40));
table.setCell(8, 3, new Double(17));
table.setCell(8, 4, new Double(28));
table.setCell(9, 1, new Double(-35));
table.setCell(9, 2, new Double(25));
table.setCell(9, 3, new Double(25));
table.setCell(9, 4, new Double(25));
table.setCell(10, 1, new Double(-10));
table.setCell(10, 2, new Double(8));
table.setCell(10, 3, new Double(10));
table.setCell(10, 4, new Double(10));
table.setCell(11, 1, new Double(-15));
table.setCell(11, 2, new Double(-28));
table.setCell(11, 3, new Double(15));
table.setCell(11, 4, new Double(15));
table.setCell(12, 1, new Double(-20));
table.setCell(12, 2, new Double(8));
table.setCell(12, 3, new Double(20));
table.setCell(12, 4, new Double(20));
table.setCell(13, 1, new Double(-25));
table.setCell(13, 2, new Double(18));
table.setCell(13, 3, new Double(25));
table.setCell(13, 4, new Double(25));
table.setCell(14, 1, new Double(-30));
table.setCell(14, 2, new Double(0));
table.setCell(14, 3, new Double(30));
table.setCell(14, 4, new Double(30));
table.setCell(15, 1, new Double(-35));
table.setCell(15, 2, new Double(-10));
table.setCell(15, 3, new Double(35));
table.setCell(15, 4, new Double(35));
table.setCell(16, 1, new Double(55));
table.setCell(16, 2, new Double(8));
table.setCell(16, 3, new Double(-15));
table.setCell(16, 4, new Double(-15));
table.setCell(17, 1, new Double(30));
table.setCell(17, 2, new Double(18));
table.setCell(17, 3, new Double(10));
table.setCell(17, 4, new Double(10));
table.setCell(18, 1, new Double(15));
table.setCell(18, 2, new Double(-8));
table.setCell(18, 3, new Double(15));
table.setCell(18, 4, new Double(15));
table.setCell(19, 1, new Double(0));
table.setCell(19, 2, new Double(28));
table.setCell(19, 3, new Double(20));
table.setCell(19, 4, new Double(20));
table.setCell(20, 1, new Double(-15));
table.setCell(20, 2, new Double(-28));
table.setCell(20, 3, new Double(25));
table.setCell(20, 4, new Double(25));
table.setCell(21, 1, new Double(-30));
table.setCell(21, 2, new Double(35));
table.setCell(21, 3, new Double(-30));
table.setCell(21, 4, new Double(30));
table.setCell(22, 1, new Double(-35));
table.setCell(22, 2, new Double(-5));
table.setCell(22, 3, new Double(35));
table.setCell(22, 4, new Double(35));
%>